Delegate a debug call to the underlying logger.
(self, msg: str, *args: Any, **kwargs: Any)
| 144 | # Boilerplate convenience methods |
| 145 | # |
| 146 | def debug(self, msg: str, *args: Any, **kwargs: Any) -> None: |
| 147 | """Delegate a debug call to the underlying logger.""" |
| 148 | |
| 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.""" |
no test coverage detected