當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript winston.error函數代碼示例

本文整理匯總了TypeScript中winston.error函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript error函數的具體用法?TypeScript error怎麽用?TypeScript error使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了error函數的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1:

 .catch(function(err: any) {
     logger.error(err);
     return err;
 });
開發者ID:jokecamp,項目名稱:liams-picks,代碼行數:4,代碼來源:storage.ts

示例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 } )
    }
開發者ID:Webinate,項目名稱:users,代碼行數:6,代碼來源:client-connection.ts

示例3:

		.catch(err => {
			winston.error('Error in getPublicCategories', { path: 'getPublicCategories', data: {error: err} })
			res.status(500).json(err);
		});
開發者ID:radotzki,項目名稱:bullshit-server,代碼行數:4,代碼來源:getPublicCategories.ts

示例4:

 .catch(err => {
     winston.error('Error updating child game name', { path: 'create', data: { error: err } })
     return err;
 });
開發者ID:radotzki,項目名稱:bullshit-server,代碼行數:4,代碼來源:game.helpers.ts

示例5:

 .on('commandError', (command: Command, error: {}) => {
     if (error instanceof FriendlyError) { return }
     winston.error(`Error in command ${command.groupID}:${command.memberName}`, error)
 })
開發者ID:tinnvec,項目名稱:stonebot,代碼行數:4,代碼來源:app.ts

示例6:

			.catch(err => {
				winston.error('Error while giving answer', { path: 'answer', data: { error: err } })
				return res.status(500).json(err);
			});
開發者ID:radotzki,項目名稱:bullshit-server,代碼行數:4,代碼來源:answer.ts

示例7: it

 it("Logs correctly", function(done) {
     LoggingHelper.initialize(true);
     winston.error("Test", function () {
         done();
     });
 });
開發者ID:debmalya,項目名稱:bst,代碼行數:6,代碼來源:logging-helper-test.ts

示例8: main

main().catch(err => {
  winston.error(err);
  process.exit(-1);
});
開發者ID:thedillonb,項目名稱:GitHub-Trending,代碼行數:4,代碼來源:main.ts

示例9:

 .catch((err) => {
     logger.error(err);
 });
開發者ID:CMUBigLab,項目名稱:cmuNodeFbot,代碼行數:3,代碼來源:bot.ts

示例10:

	}).catch(err => {
		winston.error('Error in updateQuestion', { path: 'updateQuestion', data: {error: err} })
		res.status(500).json(err)
	})
開發者ID:radotzki,項目名稱:bullshit-server,代碼行數:4,代碼來源:updateQuestion.ts


注:本文中的winston.error函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。