Tizen 2.0 Release
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.2.0 / node_modules / grunt / node_modules / prompt / node_modules / winston / lib / winston / config / cli-config.js
1 /*
2  * cli-config.js: Config that conform to commonly used CLI logging levels. 
3  *
4  * (C) 2010 Charlie Robbins
5  * MIT LICENCE
6  *
7  */
8  
9 var cliConfig = exports;
10
11 cliConfig.levels = {
12   silly: 0,
13   input: 1,
14   verbose: 2,
15   prompt: 3,
16   info: 4,
17   data: 5,
18   help: 6,
19   warn: 7,
20   debug: 8,
21   error: 9
22 };
23
24 cliConfig.colors = {
25   silly: 'magenta',
26   input: 'grey',
27   verbose: 'cyan',
28   prompt: 'grey',
29   info: 'green',
30   data: 'grey',
31   help: 'cyan',
32   warn: 'yellow',
33   debug: 'blue',
34   error: 'red'
35 };