log   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 11
dl 0
loc 17
rs 10
c 0
b 0
f 0
wmc 0
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