Issues (6)

log/__init__.py (6 issues)

1
# pylint: disable=wildcard-import
2
3
from logging import DEBUG, ERROR, INFO, WARNING
4
5
from .helpers import *
6
from .logger import *
7
8
9
WARN = WARNING
10
11
d = debug
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable debug does not seem to be defined.
Loading history...
12
i = info
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable info does not seem to be defined.
Loading history...
13
w = warn = warning
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable warning does not seem to be defined.
Loading history...
14
e = error
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable error does not seem to be defined.
Loading history...
15
c = critical
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable critical does not seem to be defined.
Loading history...
16
exc = exception
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable exception does not seem to be defined.
Loading history...
17