spee.ch/config/loggerConfig.js

37 lines
1.1 KiB
JavaScript
Raw Normal View History

const logger = require('winston');
2018-03-27 21:47:55 +02:00
function LoggerConfig () {
this.logLevel = 'debug';
2018-03-29 21:46:20 +02:00
this.update = (config) => {
if (!config) {
2018-03-29 21:33:52 +02:00
return logger.warn('No logger config received.');
}
2018-03-29 21:33:52 +02:00
logger.info('configuring winston logger...');
// update values with local config params
const {logLevel} = config;
this.logLevel = logLevel;
// configure the winston logger
logger.configure({
transports: [
new (logger.transports.Console)({
level : this.logLevel,
timestamp : false,
colorize : true,
prettyPrint : true,
handleExceptions : true,
humanReadableUnhandledException: true,
}),
],
});
// test all the log levels
2018-03-29 21:33:52 +02:00
logger.info('testing winston log levels...');
logger.warn('Testing: Log Level 1');
logger.info('Testing: Log Level 2');
logger.verbose('Testing: Log Level 3');
logger.debug('Testing: Log Level 4');
logger.silly('Testing: Log Level 5');
};
};
module.exports = new LoggerConfig();