Allow Winston's log level to be set via nconf

Defaults to `info` for `production` and `verbose` otherwise, like it used to.
v1.18.x
Fokke Zandbergen 10 years ago
parent 619251143d
commit 4b1c9ce9a2

@ -43,7 +43,7 @@ winston.add(winston.transports.Console, {
var date = new Date();
return date.getDate() + '/' + (date.getMonth() + 1) + ' ' + date.toTimeString().substr(0,5) + ' [' + global.process.pid + ']';
},
level: (global.env === 'production' || nconf.get('log-level') === 'info') ? 'info' : 'verbose'
level: nconf.get('log-level') || (global.env === 'production' ? 'info' : 'verbose')
});
if(os.platform() === 'linux') {
@ -403,4 +403,4 @@ function restart() {
winston.error('[app] Could not restart server. Shutting down.');
shutdown(1);
}
}
}

Loading…
Cancel
Save