MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / warning

Method warning

lib/sqlalchemy/log.py:156–159  ·  view source on GitHub ↗

Delegate a warning call to the underlying logger.

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

Source from the content-addressed store, hash-verified

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."""
158
159 self.log(logging.WARNING, msg, *args, **kwargs)
160
161 warn = warning
162

Callers 3

_ora_drop_ignoreFunction · 0.80
_mssql_drop_ignoreFunction · 0.80

Calls 1

logMethod · 0.95

Tested by

no test coverage detected