Process event and call `logging.Logger.critical` with the result.
(self, event: str | None = None, *args: Any, **kw: Any)
| 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 | """ |
| 240 | Process event and call `logging.Logger.critical` with the result. |
| 241 | """ |
| 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 | """ |
no test coverage detected