X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Flogger.ts;h=8603dd76127afe0a7b253db9460e1d6cbf334b93;hb=fcf4569f2da9ebcdc43caf8276f82098c89e5677;hp=480c5b49eac3df0ee1f2cc4766bab769f6b0ea15;hpb=9a12f169c15b638fe78cf6e85a1993550a25e404;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/logger.ts b/server/helpers/logger.ts index 480c5b49e..8603dd761 100644 --- a/server/helpers/logger.ts +++ b/server/helpers/logger.ts @@ -1,13 +1,16 @@ // Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/ -import * as mkdirp from 'mkdirp' +import { mkdirpSync } from 'fs-extra' import * as path from 'path' import * as winston from 'winston' -import { CONFIG } from '../initializers' +import { FileTransportOptions } from 'winston/lib/winston/transports' +import { CONFIG } from '../initializers/config' +import { omit } from 'lodash' const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT // Create the directory if it does not exist -mkdirp.sync(CONFIG.STORAGE.LOG_DIR) +// FIXME: use async +mkdirpSync(CONFIG.STORAGE.LOG_DIR) function loggerReplacer (key: string, value: any) { if (value instanceof Error) { @@ -22,7 +25,10 @@ function loggerReplacer (key: string, value: any) { } const consoleLoggerFormat = winston.format.printf(info => { - let additionalInfos = JSON.stringify(info.meta || info.err, loggerReplacer, 2) + const obj = omit(info, 'label', 'timestamp', 'level', 'message') + + let additionalInfos = JSON.stringify(obj, loggerReplacer, 2) + if (additionalInfos === undefined || additionalInfos === '{}') additionalInfos = '' else additionalInfos = ' ' + additionalInfos @@ -40,6 +46,21 @@ const labelFormatter = winston.format.label({ label }) +const fileLoggerOptions: FileTransportOptions = { + + filename: path.join(CONFIG.STORAGE.LOG_DIR, 'peertube.log'), + handleExceptions: true, + format: winston.format.combine( + winston.format.timestamp(), + jsonLoggerFormat + ) +} + +if (CONFIG.LOG.ROTATION) { + fileLoggerOptions.maxsize = 1024 * 1024 * 12 + fileLoggerOptions.maxFiles = 20 +} + const logger = winston.createLogger({ level: CONFIG.LOG.LEVEL, format: winston.format.combine( @@ -47,16 +68,7 @@ const logger = winston.createLogger({ winston.format.splat() ), transports: [ - new winston.transports.File({ - filename: path.join(CONFIG.STORAGE.LOG_DIR, 'peertube.log'), - handleExceptions: true, - maxsize: 1024 * 1024 * 30, - maxFiles: 5, - format: winston.format.combine( - winston.format.timestamp(), - jsonLoggerFormat - ) - }), + new winston.transports.File(fileLoggerOptions), new winston.transports.Console({ handleExceptions: true, format: winston.format.combine(