/
eb
/
nodejs-screencast
Обзор
Документация
Войти
/
eb
/
nodejs-screencast
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
chat/9/lib/log.js
20 строк
443 B
Ilya Kantor
add new casts
12 сен 2013, 13:57
12 сен 2013, 13:57
54774f8
Код
Авторство
О чём код?
var winston = require('winston'); var ENV = process.env.NODE_ENV; // can be much more flexible than that O_o 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', label: path }) ] }); } module.exports = getLogger;