MCPcopy Create free account
hub / github.com/hynek/structlog / fatal

Method fatal

src/structlog/stdlib.py:244–248  ·  view source on GitHub ↗

Process event and call `logging.Logger.critical` with the result.

(self, event: str | None = None, *args: Any, **kw: Any)

Source from the content-addressed store, hash-verified

242 return self._proxy_to_logger("critical", event, *args, **kw)
243
244 def fatal(self, event: str | None = None, *args: Any, **kw: Any) -> Any:
245 """
246 Process event and call `logging.Logger.critical` with the result.
247 """
248 return self._proxy_to_logger("critical", event, *args, **kw)
249
250 def exception(
251 self, event: str | None = None, *args: Any, **kw: Any

Calls 1

_proxy_to_loggerMethod · 0.95