X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Flogger.ts;h=d92381a2c72e1ed715dbe6230742ad0c402117d7;hb=ff193d5e3fbe648f689be2e235dcf88daa1bba48;hp=e0b904950828f5822af4d0bf34b722287f396bd0;hpb=0647f472bc45d82a34e509434c112326499bbe17;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/logger.ts b/server/helpers/logger.ts index e0b904950..d92381a2c 100644 --- a/server/helpers/logger.ts +++ b/server/helpers/logger.ts @@ -18,7 +18,11 @@ const excludedKeys = { label: true } function keysExcluder (key, value) { - return excludedKeys[key] === true ? undefined : value + if (excludedKeys[key] === true) return undefined + + if (key === 'err') return value.stack + + return value } const consoleLoggerFormat = winston.format.printf(info => { @@ -30,8 +34,14 @@ const consoleLoggerFormat = winston.format.printf(info => { return `[${info.label}] ${info.timestamp} ${info.level}: ${info.message}${additionalInfos}` }) -const jsonLoggerFormat = winston.format.printf(info => { - if (info.message && info.message.stack !== undefined) info.message = info.message.stack +const jsonLoggerFormat = winston.format.printf(infoArg => { + let info = infoArg.err + ? Object.assign({}, infoArg, { err: infoArg.err.stack }) + : infoArg + + if (infoArg.message && infoArg.message.stack !== undefined) { + info = Object.assign({}, info, { message: infoArg.message.stack }) + } return JSON.stringify(info) }) @@ -73,11 +83,39 @@ const logger = new winston.createLogger({ exitOnError: true }) +function bunyanLogFactory (level: string) { + return function () { + let meta = null + let args = [].concat(arguments) + + if (arguments[ 0 ] instanceof Error) { + meta = arguments[ 0 ].toString() + args = Array.prototype.slice.call(arguments, 1) + args.push(meta) + } else if (typeof (args[ 0 ]) !== 'string') { + meta = arguments[ 0 ] + args = Array.prototype.slice.call(arguments, 1) + args.push(meta) + } + + logger[ level ].apply(logger, args) + } +} +const bunyanLogger = { + trace: bunyanLogFactory('debug'), + debug: bunyanLogFactory('debug'), + info: bunyanLogFactory('info'), + warn: bunyanLogFactory('warn'), + error: bunyanLogFactory('error'), + fatal: bunyanLogFactory('error') +} + // --------------------------------------------------------------------------- export { timestampFormatter, labelFormatter, consoleLoggerFormat, - logger + logger, + bunyanLogger }