Process event and call ``log.msg()`` with the result.
(self, event: str | None = None, **kw: Any)
| 45 | """ |
| 46 | |
| 47 | def msg(self, event: str | None = None, **kw: Any) -> Any: |
| 48 | """ |
| 49 | Process event and call ``log.msg()`` with the result. |
| 50 | """ |
| 51 | return self._proxy_to_logger("msg", event, **kw) |
| 52 | |
| 53 | def err(self, event: str | None = None, **kw: Any) -> Any: |
| 54 | """ |