Total Complexity | 0 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | from typing import TypeVar |
||
|
|||
2 | |||
3 | from pocketutils.misc.loguru_utils import FancyLoguru, LoggerWithCautionAndNotice |
||
4 | |||
5 | T = TypeVar("T", covariant=True) |
||
6 | |||
7 | |||
8 | LOG_SETUP = FancyLoguru.new(LoggerWithCautionAndNotice).set_control(False) |
||
9 | |||
10 | logger = LOG_SETUP.logger |
||
11 | |||
12 | |||
13 | __all__ = ["LOG_SETUP", "logger"] |
||
14 |