本文整理匯總了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);
}
});
示例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);
}