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