MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / info

Method info

tools/python-3.11.9-amd64/Lib/logging/__init__.py:1479–1489  ·  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", "interesting problem", exc_info=True)

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

Source from the content-addressed store, hash-verified

1477 self._log(DEBUG, msg, args, **kwargs)
1478
1479 def info(self, msg, *args, **kwargs):
1480 """
1481 Log 'msg % args' with severity 'INFO'.
1482
1483 To pass exception information, use the keyword argument exc_info with
1484 a true value, e.g.
1485
1486 logger.info("Houston, we have a %s", "interesting problem", exc_info=True)
1487 """
1488 if self.isEnabledFor(INFO):
1489 self._log(INFO, msg, args, **kwargs)
1490
1491 def warning(self, msg, *args, **kwargs):
1492 """

Callers 4

infoFunction · 0.45
mainFunction · 0.45
log_messageMethod · 0.45
load_grammarFunction · 0.45

Calls 2

isEnabledForMethod · 0.95
_logMethod · 0.95

Tested by

no test coverage detected