MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / critical

Method critical

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

173 self.log(logging.ERROR, msg, *args, **kwargs)
174
175 def critical(self, msg: str, *args: Any, **kwargs: Any) -> None:
176 """Delegate a critical call to the underlying logger."""
177
178 self.log(logging.CRITICAL, msg, *args, **kwargs)
179
180 def log(self, level: int, msg: str, *args: Any, **kwargs: Any) -> None:
181 """Delegate a log call to the underlying logger.

Callers

nothing calls this directly

Calls 1

logMethod · 0.95

Tested by

no test coverage detected