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

Method info

Lib/logging/__init__.py:1907–1911  ·  view source on GitHub ↗

Delegate an info call to the underlying logger.

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

Source from the content-addressed store, hash-verified

1905 self.log(DEBUG, msg, *args, **kwargs)
1906
1907 def info(self, msg, *args, **kwargs):
1908 """
1909 Delegate an info call to the underlying logger.
1910 """
1911 self.log(INFO, msg, *args, **kwargs)
1912
1913 def warning(self, msg, *args, **kwargs):
1914 """

Callers 1

test_flatMethod · 0.95

Calls 1

logMethod · 0.95

Tested by 1

test_flatMethod · 0.76