1
0
Fork 0
peertube/server/helpers/logger.ts

78 lines
2.0 KiB
TypeScript
Raw Normal View History

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