Don't use this method, use critical() instead.
(self, msg, *args, **kwargs)
| 1536 | self._log(CRITICAL, msg, args, **kwargs) |
| 1537 | |
| 1538 | def fatal(self, msg, *args, **kwargs): |
| 1539 | """ |
| 1540 | Don't use this method, use critical() instead. |
| 1541 | """ |
| 1542 | self.critical(msg, *args, **kwargs) |
| 1543 | |
| 1544 | def log(self, level, msg, *args, **kwargs): |
| 1545 | """ |