function getLogger(module) {
var path = module.filename.split('/').slice(-2).join('/');
return new winston.Logger({
transports: [
new winston.transports.Console({
colorize: true,
level: (ENV == 'development') ? 'debug' : 'error',
lavel: path
})
]
});
}
log.info("сообщение";)
info: ПУТЬ сообщение