Don't use this method, use critical() instead.
(self, msg, *args, **kwargs)
| 1569 | self._log(CRITICAL, msg, args, **kwargs) |
| 1570 | |
| 1571 | def fatal(self, msg, *args, **kwargs): |
| 1572 | """ |
| 1573 | Don't use this method, use critical() instead. |
| 1574 | """ |
| 1575 | self.critical(msg, *args, **kwargs) |
| 1576 | |
| 1577 | def log(self, level, msg, *args, **kwargs): |
| 1578 | """ |