MCPcopy Index your code
hub / github.com/RustPython/RustPython / critical

Method critical

Lib/logging/__init__.py:1944–1948  ·  view source on GitHub ↗

Delegate a critical call to the underlying logger.

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

Source from the content-addressed store, hash-verified

1942 self.log(ERROR, msg, *args, exc_info=exc_info, **kwargs)
1943
1944 def critical(self, msg, *args, **kwargs):
1945 """
1946 Delegate a critical call to the underlying logger.
1947 """
1948 self.log(CRITICAL, msg, *args, **kwargs)
1949
1950 def log(self, level, msg, *args, **kwargs):
1951 """

Callers

nothing calls this directly

Calls 1

logMethod · 0.95

Tested by

no test coverage detected