(self, msg, *args, **kwargs)
| 280 | self.error_log.debug(msg, *args, **kwargs) |
| 281 | |
| 282 | def exception(self, msg, *args, **kwargs): |
| 283 | self.error_log.exception(msg, *args, **kwargs) |
| 284 | |
| 285 | def log(self, lvl, msg, *args, **kwargs): |
| 286 | if isinstance(lvl, str): |
no outgoing calls
no test coverage detected