Skip to content

Commit

Permalink
[fix] Correct logging levels. Fixes #202.
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Apr 21, 2013
1 parent 4266269 commit 9455740
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/winston/config/npm-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ var npmConfig = exports;
npmConfig.levels = {
silly: 0,
verbose: 1,
info: 2,
warn: 3,
debug: 4,
debug: 2,
info: 3,
warn: 4,
error: 5
};

npmConfig.colors = {
silly: 'magenta',
verbose: 'cyan',
debug: 'blue',
info: 'green',
warn: 'yellow',
debug: 'blue',
error: 'red'
};

0 comments on commit 9455740

Please sign in to comment.