Lines Matching full:critical
30 __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR',
34 'captureWarnings', 'critical', 'debug', 'disable', 'error',
92 CRITICAL = 50
93 FATAL = CRITICAL
102 CRITICAL: 'CRITICAL',
110 'CRITICAL': CRITICAL,
124 If the level is one of the predefined levels (CRITICAL, ERROR, WARNING,
444 WARNING, ERROR, CRITICAL)
446 "WARNING", "ERROR", "CRITICAL")
1343 def critical(self, msg, *args, **kwargs):
1345 Log 'msg % args' with severity 'CRITICAL'.
1350 logger.critical("Houston, we have a %s", "major disaster", exc_info=1)
1352 if self.isEnabledFor(CRITICAL):
1353 self._log(CRITICAL, msg, args, **kwargs)
1355 fatal = critical
1659 def critical(self, msg, *args, **kwargs):
1661 Delegate a critical call to the underlying logger.
1663 self.log(CRITICAL, msg, *args, **kwargs)
1822 def critical(msg, *args, **kwargs):
1824 Log a message with severity 'CRITICAL' on the root logger. If the logger
1830 root.critical(msg, *args, **kwargs)
1832 fatal = critical