Process event and call `logging.Logger.info` with the result.
(self, event: str | None = None, *args: Any, **kw: Any)
| 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 | """ |
| 220 | Process event and call `logging.Logger.info` with the result. |
| 221 | """ |
| 222 | return self._proxy_to_logger("info", event, *args, **kw) |
| 223 | |
| 224 | def warning(self, event: str | None = None, *args: Any, **kw: Any) -> Any: |
| 225 | """ |