logging¶
| CLASS | DESCRIPTION |
|---|---|
LoggerWrapper |
|
ConsoleLogger |
|
LoggerWrapper
¶
LoggerWrapper(logger: Logger)
Bases: LoggerLike
Source code in src/downmixer/utils/logging.py
9 10 | |
debug
¶
debug(msg)
Source code in src/downmixer/utils/logging.py
12 13 | |
info
¶
info(msg)
Source code in src/downmixer/utils/logging.py
15 16 | |
warning
¶
warning(msg)
Source code in src/downmixer/utils/logging.py
18 19 | |
error
¶
error(msg, exc_info=None)
Source code in src/downmixer/utils/logging.py
21 22 | |
ConsoleLogger
¶
Bases: LoggerLike
debug
¶
debug(msg)
Source code in src/downmixer/utils/logging.py
26 27 | |
warning
¶
warning(msg)
Source code in src/downmixer/utils/logging.py
32 33 | |
error
¶
error(msg, exc_info=None)
Source code in src/downmixer/utils/logging.py
35 36 | |