Delegate an error call to the underlying logger.
(self, msg, *args, **kwargs)
| 1930 | self.warning(msg, *args, **kwargs) |
| 1931 | |
| 1932 | def error(self, msg, *args, **kwargs): |
| 1933 | """ |
| 1934 | Delegate an error call to the underlying logger. |
| 1935 | """ |
| 1936 | self.log(ERROR, msg, *args, **kwargs) |
| 1937 | |
| 1938 | def exception(self, msg, *args, exc_info=True, **kwargs): |
| 1939 | """ |