Delegate a critical call to the underlying logger.
(self, msg: str, *args: Any, **kwargs: Any)
| 173 | self.log(logging.ERROR, msg, *args, **kwargs) |
| 174 | |
| 175 | def critical(self, msg: str, *args: Any, **kwargs: Any) -> None: |
| 176 | """Delegate a critical call to the underlying logger.""" |
| 177 | |
| 178 | self.log(logging.CRITICAL, msg, *args, **kwargs) |
| 179 | |
| 180 | def log(self, level: int, msg: str, *args: Any, **kwargs: Any) -> None: |
| 181 | """Delegate a log call to the underlying logger. |