Convenience method for logging an ERROR with exception information.
(self, msg, *args, exc_info=True, **kwargs)
| 1551 | self._log(ERROR, msg, args, **kwargs) |
| 1552 | |
| 1553 | def exception(self, msg, *args, exc_info=True, **kwargs): |
| 1554 | """ |
| 1555 | Convenience method for logging an ERROR with exception information. |
| 1556 | """ |
| 1557 | self.error(msg, *args, exc_info=exc_info, **kwargs) |
| 1558 | |
| 1559 | def critical(self, msg, *args, **kwargs): |
| 1560 | """ |