19 lines
264 B
Ruby
19 lines
264 B
Ruby
|
#
|
||
|
# Log severities
|
||
|
#
|
||
|
LOG_ERROR = 'error'
|
||
|
LOG_DEBUG = 'debug'
|
||
|
LOG_INFO = 'info'
|
||
|
LOG_WARN = 'warn'
|
||
|
LOG_RAW = 'raw'
|
||
|
|
||
|
#
|
||
|
# Log levels
|
||
|
#
|
||
|
# LEV_0 errors and warnings may be displayed to the user by default.
|
||
|
#
|
||
|
LEV_0 = 0
|
||
|
LEV_1 = 1
|
||
|
LEV_2 = 2
|
||
|
LEV_3 = 3
|