mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
312 B
Python
22 lines
312 B
Python
5 years ago
|
DEBUG = 10
|
||
|
INFO = 20
|
||
|
SUCCESS = 25
|
||
|
WARNING = 30
|
||
|
ERROR = 40
|
||
|
|
||
|
DEFAULT_TAGS = {
|
||
|
DEBUG: 'debug',
|
||
|
INFO: 'info',
|
||
|
SUCCESS: 'success',
|
||
|
WARNING: 'warning',
|
||
|
ERROR: 'error',
|
||
|
}
|
||
|
|
||
|
DEFAULT_LEVELS = {
|
||
|
'DEBUG': DEBUG,
|
||
|
'INFO': INFO,
|
||
|
'SUCCESS': SUCCESS,
|
||
|
'WARNING': WARNING,
|
||
|
'ERROR': ERROR,
|
||
|
}
|