2016-09-29 01:58:18 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var winston = require('winston');
|
|
|
|
|
|
|
|
module.exports = (isDebug) => {
|
|
|
|
|
2016-10-17 23:52:04 +00:00
|
|
|
winston.remove(winston.transports.Console);
|
2016-09-29 01:58:18 +00:00
|
|
|
winston.add(winston.transports.Console, {
|
|
|
|
level: (isDebug) ? 'info' : 'warn',
|
|
|
|
prettyPrint: true,
|
|
|
|
colorize: true,
|
|
|
|
silent: false,
|
|
|
|
timestamp: true
|
|
|
|
});
|
|
|
|
|
|
|
|
return winston;
|
|
|
|
|
|
|
|
};
|