Lines Matching full:critical
28 __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR',
32 'captureWarnings', 'critical', 'debug', 'disable', 'error',
123 CRITICAL = 50
124 FATAL = CRITICAL
133 CRITICAL : 'CRITICAL',
139 'CRITICAL' : CRITICAL,
152 If the level is one of the predefined levels (CRITICAL, ERROR, WARNING,
365 WARNING, ERROR, CRITICAL)
367 "WARNING", "ERROR", "CRITICAL")
1202 def critical(self, msg, *args, **kwargs):
1204 Log 'msg % args' with severity 'CRITICAL'.
1209 logger.critical("Houston, we have a %s", "major disaster", exc_info=1)
1211 if self.isEnabledFor(CRITICAL):
1212 self._log(CRITICAL, msg, args, **kwargs)
1214 fatal = critical
1475 def critical(self, msg, *args, **kwargs):
1477 Delegate a critical call to the underlying logger, after adding
1481 self.logger.critical(msg, *args, **kwargs)
1587 def critical(msg, *args, **kwargs):
1589 Log a message with severity 'CRITICAL' on the root logger.
1593 root.critical(msg, *args, **kwargs)
1595 fatal = critical