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