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

Method critical

src/structlog/stdlib.py:238–242  ·  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

236 return self._proxy_to_logger("error", event, *args, **kw)
237
238 def critical(self, event: str | None = None, *args: Any, **kw: Any) -> Any:
239 """
240 Process event and call `logging.Logger.critical` with the result.
241 """
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 """

Callers 1

show_off.pyFile · 0.45

Calls 1

_proxy_to_loggerMethod · 0.95

Tested by

no test coverage detected