Send an info log message.
(self, data: Any, *, logger_name: str | None = None)
| 294 | |
| 295 | @deprecated("The logging capability is deprecated as of 2026-07-28 (SEP-2577).", category=MCPDeprecationWarning) |
| 296 | async def info(self, data: Any, *, logger_name: str | None = None) -> None: |
| 297 | """Send an info log message.""" |
| 298 | await self.log("info", data, logger_name=logger_name) # pyright: ignore[reportDeprecated] |
| 299 | |
| 300 | @deprecated("The logging capability is deprecated as of 2026-07-28 (SEP-2577).", category=MCPDeprecationWarning) |
| 301 | async def warning(self, data: Any, *, logger_name: str | None = None) -> None: |