Delegate a warning call to the underlying logger.
(self, msg: str, *args: Any, **kwargs: Any)
| 154 | self.log(logging.INFO, msg, *args, **kwargs) |
| 155 | |
| 156 | def warning(self, msg: str, *args: Any, **kwargs: Any) -> None: |
| 157 | """Delegate a warning call to the underlying logger.""" |
| 158 | |
| 159 | self.log(logging.WARNING, msg, *args, **kwargs) |
| 160 | |
| 161 | warn = warning |
| 162 |
no test coverage detected