Completed
Push — master ( 6e23b2...bd66a8 )
by Jace
18s
created

log   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

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