Skip to content

Commit

Permalink
Changing default debug log priority to match suggestions in winstonjs#89
Browse files Browse the repository at this point in the history
  • Loading branch information
jhurliman committed Jul 8, 2012
1 parent eb74ec4 commit 84a1510
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/winston/config/cli-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ cliConfig.levels = {
input: 1,
verbose: 2,
prompt: 3,
info: 4,
data: 5,
help: 6,
warn: 7,
debug: 8,
debug: 4,
info: 5,
data: 6,
help: 7,
warn: 8,
error: 9
};

Expand All @@ -26,10 +26,10 @@ cliConfig.colors = {
input: 'grey',
verbose: 'cyan',
prompt: 'grey',
debug: 'blue',
info: 'green',
data: 'grey',
help: 'cyan',
warn: 'yellow',
debug: 'blue',
error: 'red'
};

0 comments on commit 84a1510

Please sign in to comment.