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

Method info

Lib/logging/__init__.py:1512–1522  ·  view source on GitHub ↗

Log 'msg % args' with severity 'INFO'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.info("Houston, we have a %s", "notable problem", exc_info=True)

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

Source from the content-addressed store, hash-verified

1510 self._log(DEBUG, msg, args, **kwargs)
1511
1512 def info(self, msg, *args, **kwargs):
1513 """
1514 Log 'msg % args' with severity 'INFO'.
1515
1516 To pass exception information, use the keyword argument exc_info with
1517 a true value, e.g.
1518
1519 logger.info("Houston, we have a %s", "notable problem", exc_info=True)
1520 """
1521 if self.isEnabledFor(INFO):
1522 self._log(INFO, msg, args, **kwargs)
1523
1524 def warning(self, msg, *args, **kwargs):
1525 """

Callers 1

infoFunction · 0.45

Calls 2

isEnabledForMethod · 0.95
_logMethod · 0.95

Tested by

no test coverage detected