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