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

Method debug

Lib/logging/__init__.py:1901–1905  ·  view source on GitHub ↗

Delegate a debug call to the underlying logger.

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

Source from the content-addressed store, hash-verified

1899 # Boilerplate convenience methods
1900 #
1901 def debug(self, msg, *args, **kwargs):
1902 """
1903 Delegate a debug call to the underlying logger.
1904 """
1905 self.log(DEBUG, msg, *args, **kwargs)
1906
1907 def info(self, msg, *args, **kwargs):
1908 """

Callers 1

test_flatMethod · 0.95

Calls 1

logMethod · 0.95

Tested by 1

test_flatMethod · 0.76