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

Function info

Lib/logging/__init__.py:2200–2208  ·  view source on GitHub ↗

Log a message with severity 'INFO' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format.

(msg, *args, **kwargs)

Source from the content-addressed store, hash-verified

2198 warning(msg, *args, **kwargs)
2199
2200def info(msg, *args, **kwargs):
2201 """
2202 Log a message with severity 'INFO' on the root logger. If the logger has
2203 no handlers, call basicConfig() to add a console handler with a pre-defined
2204 format.
2205 """
2206 if len(root.handlers) == 0:
2207 basicConfig()
2208 root.info(msg, *args, **kwargs)
2209
2210def debug(msg, *args, **kwargs):
2211 """

Callers

nothing calls this directly

Calls 3

lenFunction · 0.85
basicConfigFunction · 0.85
infoMethod · 0.45

Tested by

no test coverage detected