本文整理汇总了TypeScript中winston.error函数的典型用法代码示例。如果您正苦于以下问题:TypeScript error函数的具体用法?TypeScript error怎么用?TypeScript error使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了error函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
.catch(function(err: any) {
logger.error(err);
return err;
});
示例2: onError
/**
* Called whenever an error has occurred
*/
private onError( err: Error ) {
winston.error( `An error has occurred for web socket : '${err.message}'`, { process: process.pid } )
}
示例3:
.catch(err => {
winston.error('Error in getPublicCategories', { path: 'getPublicCategories', data: {error: err} })
res.status(500).json(err);
});
示例4:
.catch(err => {
winston.error('Error updating child game name', { path: 'create', data: { error: err } })
return err;
});
示例5:
.on('commandError', (command: Command, error: {}) => {
if (error instanceof FriendlyError) { return }
winston.error(`Error in command ${command.groupID}:${command.memberName}`, error)
})
示例6:
.catch(err => {
winston.error('Error while giving answer', { path: 'answer', data: { error: err } })
return res.status(500).json(err);
});
示例7: it
it("Logs correctly", function(done) {
LoggingHelper.initialize(true);
winston.error("Test", function () {
done();
});
});
示例8: main
main().catch(err => {
winston.error(err);
process.exit(-1);
});
示例10:
}).catch(err => {
winston.error('Error in updateQuestion', { path: 'updateQuestion', data: {error: err} })
res.status(500).json(err)
})