Delegate a critical call to the underlying logger.
(self, msg, *args, **kwargs)
| 1942 | self.log(ERROR, msg, *args, exc_info=exc_info, **kwargs) |
| 1943 | |
| 1944 | def critical(self, msg, *args, **kwargs): |
| 1945 | """ |
| 1946 | Delegate a critical call to the underlying logger. |
| 1947 | """ |
| 1948 | self.log(CRITICAL, msg, *args, **kwargs) |
| 1949 | |
| 1950 | def log(self, level, msg, *args, **kwargs): |
| 1951 | """ |