本文整理汇总了TypeScript中log4js.Logger类的典型用法代码示例。如果您正苦于以下问题:TypeScript Logger类的具体用法?TypeScript Logger怎么用?TypeScript Logger使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Logger类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: makeMsg
public static makeMsg(logger: Logger, fn: string, namespace: string, title = 'msg', desc = '') {
let description: string
if (typeof desc !== 'string') {
description = desc + ''
} else {
description = desc
}
const msg = `[${namespace.toUpperCase()} - ${title}]: ${description.replace(/[\r\n]/g, ' ')}`
if (isPro) {
logger[fn](msg)
} else {
const type: any = `[${fn.toUpperCase()} ${namespace}]`
if (~type.indexOf('WARN')) {
console.log(type.warn + ` ${msg}\n`)
} else if (~type.indexOf('ERROR')) {
console.log(type.error + ` ${msg}\n`)
} else {
console.log(type.info + ` ${msg}\n`)
}
}
}
开发者ID:linkFly6,项目名称:Said,代码行数:21,代码来源:log.ts
示例2:
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
示例3: _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
示例4: getConfiguration
private getConfiguration(filePath: string): Configuration.IConfigurationFile {
let {configuration} = this._config as any;
if (configuration === void 0) { // auto search for 'tslint.json' file.
configuration = Linter.findConfigurationPath(null, filePath);
}
this._logger.debug(`Using Configuration: ${typeof configuration === 'string' ? configuration : 'config object'}`);
if (configuration === 'default') {
this._logger.warn(`configuration 'default' is deprecated, use 'tslint:recommended' instead.`);
configuration = 'tslint:recommended';
}
if (typeof configuration === 'string') { // path of tslint.json file or tslint preset 'tslint:{all,latest,recommended}'.
configuration = Configuration.loadConfigurationFromPath(configuration as string);
} else if (typeof configuration === 'object') { // tslint config object.
configuration = Configuration.parseConfigFile(configuration as any);
}
this._logger.debug(`Configuration Object:\n${inspect(configuration, {colors: true})}\n`);
return configuration;
}
开发者ID:yisraelx,项目名称:karma-tslint,代码行数:24,代码来源:tslint.preprocessor.ts
注:本文中的log4js.Logger类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论