Parent: [cda9fe] (diff)

Child: [6b2ee4] (diff)

Download this file

logger.js    13 lines (9 with data), 325 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
/*made by Miguel Rodrigues @ KBZ miguel.rodrigues@knowledgebiz.pt*/
var winston = require('winston');
module.exports = mylogger = new (winston.Logger)({
level: process.env.DEBUGLEVEL,
transports: [
new (winston.transports.Console)(),
new (winston.transports.File)({ filename: 'notification.log' })
]
});