Delegate an error call to the underlying logger.
(self, msg, *args, **kwargs)
| 1922 | self.warning(msg, *args, **kwargs) |
| 1923 | |
| 1924 | def error(self, msg, *args, **kwargs): |
| 1925 | """ |
| 1926 | Delegate an error call to the underlying logger. |
| 1927 | """ |
| 1928 | self.log(ERROR, msg, *args, **kwargs) |
| 1929 | |
| 1930 | def exception(self, msg, *args, exc_info=True, **kwargs): |
| 1931 | """ |