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 / syslog-config.js
1 /*
2  * syslog-config.js: Config that conform to syslog logging levels. 
3  *
4  * (C) 2010 Charlie Robbins
5  * MIT LICENCE
6  *
7  */
8  
9 var syslogConfig = exports;
10
11 syslogConfig.levels = {
12   debug: 0, 
13   info: 1, 
14   notice: 2, 
15   warning: 3,
16   error: 4, 
17   crit: 5,
18   alert: 6,
19   emerg: 7
20 };
21
22 syslogConfig.colors = {
23   debug: 'blue',
24   info: 'green',
25   notice: 'yellow',
26   warning: 'red',
27   error: 'red', 
28   crit: 'red',
29   alert: 'yellow',
30   emerg: 'red'
31 };