Skip to content

Commit

Permalink
Merge 071147b into be73c51
Browse files Browse the repository at this point in the history
  • Loading branch information
itayw committed Jul 9, 2014
2 parents be73c51 + 071147b commit a07fd26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/common/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ logger.getBuffer = function () {
};

//add the stdout stream
var consoleLevel = joola.config.get('store:logger:console:level') || (process.env.NODE_ENV === 'test' ? 'info' : null) || 'info';
var consoleLevel = joola.config.get('store:logger:console:level') || (process.env.NODE_ENV === 'test' ? 'info' : null) || process.env.JOOLAIO_CONFIG_STORE_LOGGER_CONSOLE_LEVEL || 'trace';

if (process.argv.indexOf('--debug') > -1) {
consoleLevel = 'debug';
Expand Down

0 comments on commit a07fd26

Please sign in to comment.