2016-02-07 04:23:23 -06:00
|
|
|
// Thanks http://tostring.it/2014/06/23/advanced-logging-with-nodejs/
|
2017-06-05 14:53:49 -05:00
|
|
|
import * as mkdirp from 'mkdirp'
|
|
|
|
import * as path from 'path'
|
|
|
|
import * as winston from 'winston'
|
2017-05-15 15:22:03 -05:00
|
|
|
import { CONFIG } from '../initializers/constants'
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2017-05-15 15:22:03 -05:00
|
|
|
const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
|
2016-05-01 02:58:34 -05:00
|
|
|
|
|
|
|
// Create the directory if it does not exist
|
2017-05-15 15:22:03 -05:00
|
|
|
mkdirp.sync(CONFIG.STORAGE.LOG_DIR)
|
2016-05-01 02:58:34 -05:00
|
|
|
|
2016-03-16 16:29:27 -05:00
|
|
|
const logger = new winston.Logger({
|
2016-02-07 04:23:23 -06:00
|
|
|
transports: [
|
|
|
|
new winston.transports.File({
|
|
|
|
level: 'debug',
|
2017-05-15 15:22:03 -05:00
|
|
|
filename: path.join(CONFIG.STORAGE.LOG_DIR, 'all-logs.log'),
|
2016-02-07 04:23:23 -06:00
|
|
|
handleExceptions: true,
|
|
|
|
json: true,
|
|
|
|
maxsize: 5242880,
|
|
|
|
maxFiles: 5,
|
2016-12-11 14:50:51 -06:00
|
|
|
colorize: false,
|
|
|
|
prettyPrint: true
|
2016-02-07 04:23:23 -06:00
|
|
|
}),
|
|
|
|
new winston.transports.Console({
|
|
|
|
level: 'debug',
|
2016-05-07 08:41:20 -05:00
|
|
|
label: label,
|
2016-02-07 04:23:23 -06:00
|
|
|
handleExceptions: true,
|
|
|
|
humanReadableUnhandledException: true,
|
|
|
|
json: false,
|
2016-12-11 14:50:51 -06:00
|
|
|
colorize: true,
|
|
|
|
prettyPrint: true
|
2016-02-07 04:23:23 -06:00
|
|
|
})
|
|
|
|
],
|
|
|
|
exitOnError: true
|
|
|
|
})
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2017-05-15 15:22:03 -05:00
|
|
|
export { logger }
|