2016-02-07 05:23:23 -05:00
|
|
|
// Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/
|
|
|
|
'use strict'
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const config = require('config')
|
2016-05-01 03:58:34 -04:00
|
|
|
const mkdirp = require('mkdirp')
|
2016-03-16 17:29:27 -04:00
|
|
|
const path = require('path')
|
|
|
|
const winston = require('winston')
|
2016-02-07 05:23:23 -05:00
|
|
|
winston.emitErrs = true
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const logDir = path.join(__dirname, '..', '..', config.get('storage.logs'))
|
2016-05-07 09:41:20 -04:00
|
|
|
const label = config.get('webserver.host') + ':' + config.get('webserver.port')
|
2016-05-01 03:58:34 -04:00
|
|
|
|
|
|
|
// Create the directory if it does not exist
|
|
|
|
mkdirp.sync(logDir)
|
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const logger = new winston.Logger({
|
2016-02-07 05:23:23 -05:00
|
|
|
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',
|
2016-05-07 09:41:20 -04:00
|
|
|
label: label,
|
2016-02-07 05:23:23 -05:00
|
|
|
handleExceptions: true,
|
|
|
|
humanReadableUnhandledException: true,
|
|
|
|
json: false,
|
|
|
|
colorize: true
|
|
|
|
})
|
|
|
|
],
|
|
|
|
exitOnError: true
|
|
|
|
})
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
logger.stream = {
|
|
|
|
write: function (message, encoding) {
|
|
|
|
logger.info(message)
|
2015-06-09 11:41:40 -04:00
|
|
|
}
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
module.exports = logger
|