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)
| 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 | """ |
no test coverage detected