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

Method critical

lib/sqlalchemy/log.py:180–183  ·  view source on GitHub ↗

Delegate a critical call to the underlying logger.

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

Source from the content-addressed store, hash-verified

178 self.log(logging.ERROR, msg, *args, **kwargs)
179
180 def critical(self, msg: str, *args: Any, **kwargs: Any) -> None:
181 """Delegate a critical call to the underlying logger."""
182
183 self.log(logging.CRITICAL, msg, *args, **kwargs)
184
185 def log(self, level: int, msg: str, *args: Any, **kwargs: Any) -> None:
186 """Delegate a log call to the underlying logger.

Callers

nothing calls this directly

Calls 1

logMethod · 0.95

Tested by

no test coverage detected