1
0
Fork 0
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 15:41:40 +00:00
const mkdirp = require('mkdirp')
2016-03-16 21:29:27 +00:00
const path = require('path')
const winston = require('winston')
winston.emitErrs = true
2015-06-09 15:41:40 +00:00
2016-08-19 19:34:51 +00:00
const constants = require('../initializers/constants')
const label = constants.CONFIG.WEBSERVER.HOSTNAME + ':' + constants.CONFIG.WEBSERVER.PORT
// Create the directory if it does not exist
2016-08-19 19:34:51 +00:00
mkdirp.sync(constants.CONFIG.STORAGE.LOG_DIR)
2016-03-16 21:29:27 +00:00
const logger = new winston.Logger({
transports: [
new winston.transports.File({
level: 'debug',
2016-08-19 19:34:51 +00: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 13:41:20 +00:00
label: label,
handleExceptions: true,
humanReadableUnhandledException: true,
json: false,
colorize: true
})
],
exitOnError: true
})
2015-06-09 15:41:40 +00:00
logger.stream = {
write: function (message, encoding) {
logger.info(message)
2015-06-09 15:41:40 +00:00
}
}
2016-01-31 10:23:52 +00:00
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
module.exports = logger