PeerTube/server/helpers/logger.js

46 lines
1.0 KiB
JavaScript
Raw Normal View History

// Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/
'use strict'
2015-06-09 17:41:40 +02:00
2016-03-16 22:29:27 +01:00
const config = require('config')
const mkdirp = require('mkdirp')
2016-03-16 22:29:27 +01:00
const path = require('path')
const winston = require('winston')
winston.emitErrs = true
2015-06-09 17:41:40 +02:00
2016-03-16 22:29:27 +01:00
const logDir = path.join(__dirname, '..', '..', config.get('storage.logs'))
// Create the directory if it does not exist
mkdirp.sync(logDir)
2016-03-16 22:29:27 +01:00
const logger = new winston.Logger({
transports: [
new winston.transports.File({
level: 'debug',
filename: path.join(logDir, 'all-logs.log'),
handleExceptions: true,
json: true,
maxsize: 5242880,
maxFiles: 5,
colorize: false
}),
new winston.transports.Console({
level: 'debug',
handleExceptions: true,
humanReadableUnhandledException: true,
json: false,
colorize: true
})
],
exitOnError: true
})
2015-06-09 17:41:40 +02:00
logger.stream = {
write: function (message, encoding) {
logger.info(message)
2015-06-09 17:41:40 +02:00
}
}
2016-01-31 11:23:52 +01:00
// ---------------------------------------------------------------------------
2016-01-31 11:23:52 +01:00
module.exports = logger