Total Complexity | 0 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 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 |
||
|
|||
9 | i = info |
||
10 | w = warn = warning |
||
11 | e = error |
||
12 | c = critical |
||
13 | exc = exception |
||
14 | |||
15 | __project__ = 'minilog' |
||
16 | __version__ = '1.0' |
||
17 |