Delegate a critical call to the underlying logger.
(self, msg, *args, **kwargs)
| 1934 | self.log(ERROR, msg, *args, exc_info=exc_info, **kwargs) |
| 1935 | |
| 1936 | def critical(self, msg, *args, **kwargs): |
| 1937 | """ |
| 1938 | Delegate a critical call to the underlying logger. |
| 1939 | """ |
| 1940 | self.log(CRITICAL, msg, *args, **kwargs) |
| 1941 | |
| 1942 | def log(self, level, msg, *args, **kwargs): |
| 1943 | """ |