Process event and call `logging.Logger.error` with the result.
(self, event: str | None = None, *args: Any, **kw: Any)
| 230 | warn = warning |
| 231 | |
| 232 | def error(self, event: str | None = None, *args: Any, **kw: Any) -> Any: |
| 233 | """ |
| 234 | Process event and call `logging.Logger.error` with the result. |
| 235 | """ |
| 236 | return self._proxy_to_logger("error", event, *args, **kw) |
| 237 | |
| 238 | def critical(self, event: str | None = None, *args: Any, **kw: Any) -> Any: |
| 239 | """ |