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


TypeScript Logger.error方法代碼示例

本文整理匯總了TypeScript中log4js.Logger.error方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Logger.error方法的具體用法?TypeScript Logger.error怎麽用?TypeScript Logger.error使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在log4js.Logger的用法示例。


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

示例1:

 this.http.listen(this.environment.port, (err) => {
     if (err) {
         this.log.error(this.environment.name + " micro-service not started on port: " + this.environment.port + ": " + err);
     } else {
         this.log.info(this.environment.name + " micro-service successfully started on port: " + this.environment.port);
     }
 });
開發者ID:EmcaBorg,項目名稱:got,代碼行數:7,代碼來源:microservice.abstract.ts

示例2: _preprocessor

    private _preprocessor(source: string, file: any, done: (err: any, source?: string) => void) {
        this._logger.debug(`Processing "${file.originalPath}".`);

        let {stopOnFailure = true} = this._config;
        let configuration = this.getConfiguration(file.originalPath);

        this.lint(file.originalPath, source, configuration);

        let result: LintResult = this.getResultAndClean();
        let error = null;

        if (result.failures.length) {
            this._logger.error(`\n%s`, result.output);
            if (stopOnFailure) error = result.output;
        }

        done(error, source);
    }
開發者ID:yisraelx,項目名稱:karma-tslint,代碼行數:18,代碼來源:tslint.preprocessor.ts


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