Delegate an error call to the underlying logger.
(self, msg: str, *args: Any, **kwargs: Any)
| 161 | warn = warning |
| 162 | |
| 163 | def error(self, msg: str, *args: Any, **kwargs: Any) -> None: |
| 164 | """ |
| 165 | Delegate an error call to the underlying logger. |
| 166 | """ |
| 167 | self.log(logging.ERROR, msg, *args, **kwargs) |
| 168 | |
| 169 | def exception(self, msg: str, *args: Any, **kwargs: Any) -> None: |
| 170 | """Delegate an exception call to the underlying logger.""" |