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

Method debug

Lib/logging/__init__.py:1909–1913  ·  view source on GitHub ↗

Delegate a debug call to the underlying logger.

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

Source from the content-addressed store, hash-verified

1907 # Boilerplate convenience methods
1908 #
1909 def debug(self, msg, *args, **kwargs):
1910 """
1911 Delegate a debug call to the underlying logger.
1912 """
1913 self.log(DEBUG, msg, *args, **kwargs)
1914
1915 def info(self, msg, *args, **kwargs):
1916 """

Callers 1

test_flatMethod · 0.95

Calls 1

logMethod · 0.95

Tested by 1

test_flatMethod · 0.76