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

Method exception

Lib/logging/__init__.py:1938–1942  ·  view source on GitHub ↗

Delegate an exception call to the underlying logger.

(self, msg, *args, exc_info=True, **kwargs)

Source from the content-addressed store, hash-verified

1936 self.log(ERROR, msg, *args, **kwargs)
1937
1938 def exception(self, msg, *args, exc_info=True, **kwargs):
1939 """
1940 Delegate an exception call to the underlying logger.
1941 """
1942 self.log(ERROR, msg, *args, exc_info=exc_info, **kwargs)
1943
1944 def critical(self, msg, *args, **kwargs):
1945 """

Callers

nothing calls this directly

Calls 1

logMethod · 0.95

Tested by

no test coverage detected