PeerTube/server/helpers/logger.js

48 lines
1.1 KiB
JavaScript
Raw Normal View History

// Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/
'use strict'
2015-06-09 10:41:40 -05:00
const mkdirp = require('mkdirp')
2016-03-16 16:29:27 -05:00
const path = require('path')
const winston = require('winston')
winston.emitErrs = true
2015-06-09 10:41:40 -05:00
2016-08-19 14:34:51 -05:00
const constants = require('../initializers/constants')
const label = constants.CONFIG.WEBSERVER.HOST + ':' + constants.CONFIG.WEBSERVER.PORT
// Create the directory if it does not exist
2016-08-19 14:34:51 -05:00
mkdirp.sync(constants.CONFIG.STORAGE.LOG_DIR)
2016-03-16 16:29:27 -05:00
const logger = new winston.Logger({
transports: [
new winston.transports.File({
level: 'debug',
2016-08-19 14:34:51 -05:00
filename: path.join(constants.CONFIG.STORAGE.LOG_DIR, 'all-logs.log'),
handleExceptions: true,
json: true,
maxsize: 5242880,
maxFiles: 5,
colorize: false
}),
new winston.transports.Console({
level: 'debug',
2016-05-07 08:41:20 -05:00
label: label,
handleExceptions: true,
humanReadableUnhandledException: true,
json: false,
colorize: true
})
],
exitOnError: true
})
2015-06-09 10:41:40 -05:00
logger.stream = {
write: function (message, encoding) {
logger.info(message)
2015-06-09 10:41:40 -05:00
}
}
2016-01-31 04:23:52 -06:00
// ---------------------------------------------------------------------------
2016-01-31 04:23:52 -06:00
module.exports = logger