PeerTube/server/helpers/logger.ts

116 lines
2.9 KiB
TypeScript
Raw Normal View History

// Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/
2017-06-05 21:53:49 +02:00
import * as mkdirp from 'mkdirp'
import * as path from 'path'
import * as winston from 'winston'
2017-12-12 17:53:50 +01:00
import { CONFIG } from '../initializers'
2015-06-09 17:41:40 +02:00
2017-05-15 22:22:03 +02:00
const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
// Create the directory if it does not exist
2017-05-15 22:22:03 +02:00
mkdirp.sync(CONFIG.STORAGE.LOG_DIR)
2018-01-19 13:58:13 +01:00
// Use object for better performances (~ O(1))
const excludedKeys = {
level: true,
message: true,
splat: true,
timestamp: true,
label: true
}
function keysExcluder (key, value) {
2018-03-26 15:54:13 +02:00
if (excludedKeys[key] === true) return undefined
if (key === 'err') return value.stack
return value
2018-01-19 13:58:13 +01:00
}
const consoleLoggerFormat = winston.format.printf(info => {
2018-01-19 13:58:13 +01:00
let additionalInfos = JSON.stringify(info, keysExcluder, 2)
if (additionalInfos === '{}') additionalInfos = ''
2018-01-19 14:47:03 +01:00
else additionalInfos = ' ' + additionalInfos
2018-01-19 13:58:13 +01:00
2018-01-19 14:47:03 +01:00
return `[${info.label}] ${info.timestamp} ${info.level}: ${info.message}${additionalInfos}`
2018-01-19 13:58:13 +01:00
})
2018-03-26 15:54:13 +02:00
const jsonLoggerFormat = winston.format.printf(infoArg => {
let info = infoArg.err
? Object.assign({}, infoArg, { err: infoArg.err.stack })
: infoArg
return JSON.stringify(info)
})
2018-01-19 13:58:13 +01:00
const timestampFormatter = winston.format.timestamp({
2018-03-08 18:16:15 +01:00
format: 'YYYY-MM-DD HH:mm:ss.SSS'
2018-01-19 13:58:13 +01:00
})
const labelFormatter = winston.format.label({
label
})
2018-06-26 17:52:14 +02:00
const logger = winston.createLogger({
2018-01-19 13:58:13 +01:00
level: CONFIG.LOG.LEVEL,
transports: [
new winston.transports.File({
2018-01-19 13:58:13 +01:00
filename: path.join(CONFIG.STORAGE.LOG_DIR, 'peertube.log'),
handleExceptions: true,
maxsize: 5242880,
maxFiles: 5,
2018-01-19 13:58:13 +01:00
format: winston.format.combine(
2018-03-08 18:16:15 +01:00
winston.format.timestamp(),
2018-01-19 13:58:13 +01:00
labelFormatter,
winston.format.splat(),
jsonLoggerFormat
2018-01-19 13:58:13 +01:00
)
}),
new winston.transports.Console({
2018-02-21 16:44:18 +01:00
handleExceptions: true,
2018-01-19 13:58:13 +01:00
format: winston.format.combine(
timestampFormatter,
winston.format.splat(),
labelFormatter,
winston.format.colorize(),
consoleLoggerFormat
2018-01-19 13:58:13 +01:00
)
})
],
exitOnError: true
})
2015-06-09 17:41:40 +02:00
2018-03-22 11:32:43 +01:00
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')
}
// ---------------------------------------------------------------------------
2016-01-31 11:23:52 +01:00
2018-01-19 13:58:13 +01:00
export {
timestampFormatter,
labelFormatter,
consoleLoggerFormat,
2018-03-22 11:32:43 +01:00
logger,
bunyanLogger
2018-01-19 13:58:13 +01:00
}