Delegate an info call to the underlying logger.
(self, msg: str, *args: Any, **kwargs: Any)
| 149 | self.log(logging.DEBUG, msg, *args, **kwargs) |
| 150 | |
| 151 | def info(self, msg: str, *args: Any, **kwargs: Any) -> None: |
| 152 | """Delegate an info call to the underlying logger.""" |
| 153 | |
| 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.""" |