(self, msg, *args, **kwargs)
| 268 | self.error_log.critical(msg, *args, **kwargs) |
| 269 | |
| 270 | def error(self, msg, *args, **kwargs): |
| 271 | self.error_log.error(msg, *args, **kwargs) |
| 272 | |
| 273 | def warning(self, msg, *args, **kwargs): |
| 274 | self.error_log.warning(msg, *args, **kwargs) |
no outgoing calls
no test coverage detected