mirror of https://github.com/status-im/codimd.git
21 lines
444 B
JavaScript
21 lines
444 B
JavaScript
|
var winston = require('winston');
|
||
|
winston.emitErrs = true;
|
||
|
|
||
|
var logger = new winston.Logger({
|
||
|
transports: [
|
||
|
new winston.transports.Console({
|
||
|
level: 'debug',
|
||
|
handleExceptions: true,
|
||
|
json: false,
|
||
|
colorize: true
|
||
|
})
|
||
|
],
|
||
|
exitOnError: false
|
||
|
});
|
||
|
|
||
|
module.exports = logger;
|
||
|
module.exports.stream = {
|
||
|
write: function(message, encoding){
|
||
|
logger.info(message);
|
||
|
}
|
||
|
};
|