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

Method info

Lib/logging/__init__.py:1915–1919  ·  view source on GitHub ↗

Delegate an info call to the underlying logger.

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

Source from the content-addressed store, hash-verified

1913 self.log(DEBUG, msg, *args, **kwargs)
1914
1915 def info(self, msg, *args, **kwargs):
1916 """
1917 Delegate an info call to the underlying logger.
1918 """
1919 self.log(INFO, msg, *args, **kwargs)
1920
1921 def warning(self, msg, *args, **kwargs):
1922 """

Callers 1

test_flatMethod · 0.95

Calls 1

logMethod · 0.95

Tested by 1

test_flatMethod · 0.76