Delegate an exception call to the underlying logger.
(self, msg, *args, exc_info=True, **kwargs)
| 1936 | self.log(ERROR, msg, *args, **kwargs) |
| 1937 | |
| 1938 | def exception(self, msg, *args, exc_info=True, **kwargs): |
| 1939 | """ |
| 1940 | Delegate an exception call to the underlying logger. |
| 1941 | """ |
| 1942 | self.log(ERROR, msg, *args, exc_info=exc_info, **kwargs) |
| 1943 | |
| 1944 | def critical(self, msg, *args, **kwargs): |
| 1945 | """ |