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


TypeScript log4js.Logger類代碼示例

本文整理匯總了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;未經允許,請勿轉載。