• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript log4js.Logger类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了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;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript loge.logger类代码示例发布时间:2022-05-25
下一篇:
TypeScript log4js.getLogger函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap