UNPKG

478 Btext/coffeescriptView Raw
1#levels define
2info = 1
3debug = 2
4warn = 4
5error = 8
6
7text = {}
8text[info] = 'INFO '
9text[debug] = 'DEBUG'
10text[warn] = 'WARN '
11text[error] = 'ERROR'
12
13module.exports =
14 text : text
15 info : info
16 debug : debug
17 warn : warn
18 error : error
19 levels :
20 info : info
21 debug : debug
22 warn : warn
23 error : error
24 all : error | warn | debug | info # all level const
25 exception : error | warn # error levels const