From 286d14f614675d2ced13bdf38348996547d6f6ae Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Tue, 11 Nov 2014 13:18:41 -0500 Subject: [PATCH] allowing use of winston.verbose now --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 9147c51be5..3869c8df9b 100644 --- a/app.js +++ b/app.js @@ -39,7 +39,7 @@ winston.remove(winston.transports.Console); winston.add(winston.transports.Console, { colorize: true, timestamp: true, - level: 'info' + level: global.env === 'production' ? 'info' : 'verbose' }); // TODO: remove once https://github.com/flatiron/winston/issues/280 is fixed