MCPcopy Index your code
hub / github.com/python/cpython / critical

Method critical

Lib/logging/__init__.py:1936–1940  ·  view source on GitHub ↗

Delegate a critical call to the underlying logger.

(self, msg, *args, **kwargs)

Source from the content-addressed store, hash-verified

1934 self.log(ERROR, msg, *args, exc_info=exc_info, **kwargs)
1935
1936 def critical(self, msg, *args, **kwargs):
1937 """
1938 Delegate a critical call to the underlying logger.
1939 """
1940 self.log(CRITICAL, msg, *args, **kwargs)
1941
1942 def log(self, level, msg, *args, **kwargs):
1943 """

Callers

nothing calls this directly

Calls 1

logMethod · 0.95

Tested by

no test coverage detected