Delegate a critical call to the underlying logger.
(self, msg: str, *args: Any, **kwargs: Any)
| 178 | self.log(logging.ERROR, msg, *args, **kwargs) |
| 179 | |
| 180 | def critical(self, msg: str, *args: Any, **kwargs: Any) -> None: |
| 181 | """Delegate a critical call to the underlying logger.""" |
| 182 | |
| 183 | self.log(logging.CRITICAL, msg, *args, **kwargs) |
| 184 | |
| 185 | def log(self, level: int, msg: str, *args: Any, **kwargs: Any) -> None: |
| 186 | """Delegate a log call to the underlying logger. |