Delegate an info call to the underlying logger.
(self, msg: str, *args: Any, **kwargs: Any)
| 154 | self.log(logging.DEBUG, msg, *args, **kwargs) |
| 155 | |
| 156 | def info(self, msg: str, *args: Any, **kwargs: Any) -> None: |
| 157 | """Delegate an info call to the underlying logger.""" |
| 158 | |
| 159 | self.log(logging.INFO, msg, *args, **kwargs) |
| 160 | |
| 161 | def warning(self, msg: str, *args: Any, **kwargs: Any) -> None: |
| 162 | """Delegate a warning call to the underlying logger.""" |