Process event and call `logging.Logger.debug` with the result.
(self, event: str | None = None, *args: Any, **kw: Any)
| 210 | return super().new(**new_values) |
| 211 | |
| 212 | def debug(self, event: str | None = None, *args: Any, **kw: Any) -> Any: |
| 213 | """ |
| 214 | Process event and call `logging.Logger.debug` with the result. |
| 215 | """ |
| 216 | return self._proxy_to_logger("debug", event, *args, **kw) |
| 217 | |
| 218 | def info(self, event: str | None = None, *args: Any, **kw: Any) -> Any: |
| 219 | """ |