MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / info

Method info

lib/sqlalchemy/log.py:151–154  ·  view source on GitHub ↗

Delegate an info call to the underlying logger.

(self, msg: str, *args: Any, **kwargs: Any)

Source from the content-addressed store, hash-verified

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."""
153
154 self.log(logging.INFO, msg, *args, **kwargs)
155
156 def warning(self, msg: str, *args: Any, **kwargs: Any) -> None:
157 """Delegate a warning call to the underlying logger."""

Callers

nothing calls this directly

Calls 1

logMethod · 0.95

Tested by

no test coverage detected