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

Method error

Lib/logging/__init__.py:1924–1928  ·  view source on GitHub ↗

Delegate an error call to the underlying logger.

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

Source from the content-addressed store, hash-verified

1922 self.warning(msg, *args, **kwargs)
1923
1924 def error(self, msg, *args, **kwargs):
1925 """
1926 Delegate an error call to the underlying logger.
1927 """
1928 self.log(ERROR, msg, *args, **kwargs)
1929
1930 def exception(self, msg, *args, exc_info=True, **kwargs):
1931 """

Callers 1

test_flatMethod · 0.95

Calls 1

logMethod · 0.95

Tested by 1

test_flatMethod · 0.76