(self, record)
| 31 | } |
| 32 | |
| 33 | def format(self, record): |
| 34 | log_fmt = self.FORMATS.get(record.levelno) |
| 35 | formatter = logging.Formatter(log_fmt) |
| 36 | return formatter.format(record) |
| 37 | |
| 38 | |
| 39 | def init_logger(name: str, log_level=logging.DEBUG) -> Logger: |
nothing calls this directly
no outgoing calls
no test coverage detected