Process event and call `logging.Logger.critical` with the result.
(self, event: str | None = None, *args: Any, **kw: Any)
| 242 | return self._proxy_to_logger("critical", event, *args, **kw) |
| 243 | |
| 244 | def fatal(self, event: str | None = None, *args: Any, **kw: Any) -> Any: |
| 245 | """ |
| 246 | Process event and call `logging.Logger.critical` with the result. |
| 247 | """ |
| 248 | return self._proxy_to_logger("critical", event, *args, **kw) |
| 249 | |
| 250 | def exception( |
| 251 | self, event: str | None = None, *args: Any, **kw: Any |