(cls, *args, **kw)
| 45 | _instance = None |
| 46 | |
| 47 | def __new__(cls, *args, **kw): |
| 48 | if not cls._instance: |
| 49 | cls._instance = super(Logger, cls).__new__(cls) |
| 50 | return cls._instance |
| 51 | |
| 52 | def __init__(self, config): |
| 53 | if config.log.log_level == "debug": |
nothing calls this directly
no outgoing calls
no test coverage detected