From 23e27dd53599be65b2dc2968448ce155a00a96c9 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 19 Jan 2018 13:58:13 +0100 Subject: Add ability to configure log level --- scripts/parse-log.ts | 39 ++++++++++++++++++--------------------- 1 file changed, 18 insertions(+), 21 deletions(-) (limited to 'scripts') diff --git a/scripts/parse-log.ts b/scripts/parse-log.ts index e2c42bf4c..7e804b3f9 100755 --- a/scripts/parse-log.ts +++ b/scripts/parse-log.ts @@ -2,34 +2,34 @@ import { createReadStream } from 'fs' import { join } from 'path' import { createInterface } from 'readline' import * as winston from 'winston' +import { labelFormatter, loggerFormat, timestampFormatter } from '../server/helpers/logger' import { CONFIG } from '../server/initializers/constants' -const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT - -const logger = new winston.Logger({ +const logger = new winston.createLogger({ transports: [ new winston.transports.Console({ level: 'debug', - label: label, - handleExceptions: true, - humanReadableUnhandledException: true, - json: false, - colorize: true, - prettyPrint: true, - stderrLevels: [] + stderrLevels: [], + format: winston.format.combine( + timestampFormatter, + winston.format.splat(), + labelFormatter, + winston.format.colorize(), + loggerFormat + ) }) ], exitOnError: true }) const logLevels = { - error: logger.error, - warn: logger.warn, - info: logger.info, - debug: logger.debug + error: logger.error.bind(logger), + warn: logger.warn.bind(logger), + info: logger.info.bind(logger), + debug: logger.debug.bind(logger) } -const path = join(CONFIG.STORAGE.LOG_DIR, 'all-logs.log') +const path = join(CONFIG.STORAGE.LOG_DIR, 'peertube.log') console.log('Opening %s.', path) const rl = createInterface({ @@ -38,11 +38,8 @@ const rl = createInterface({ rl.on('line', line => { const log = JSON.parse(line) - const additionalInfo: any = {} - - Object.keys(log).forEach(logKey => { - if (logKey !== 'message' && logKey !== 'level') additionalInfo[logKey] = log[logKey] - }) + // Don't know why but loggerFormat does not remove splat key + Object.assign(log, { splat: undefined }) - logLevels[log.level](log.message, additionalInfo) + logLevels[log.level](log) }) -- cgit v1.2.3