MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / info

Method info

lib/sqlalchemy/log.py:156–159  ·  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

154 self.log(logging.DEBUG, msg, *args, **kwargs)
155
156 def info(self, msg: str, *args: Any, **kwargs: Any) -> None:
157 """Delegate an info call to the underlying logger."""
158
159 self.log(logging.INFO, msg, *args, **kwargs)
160
161 def warning(self, msg: str, *args: Any, **kwargs: Any) -> None:
162 """Delegate a warning call to the underlying logger."""

Callers

nothing calls this directly

Calls 1

logMethod · 0.95

Tested by

no test coverage detected