Home | History | Annotate | Download | only in logging

Lines Matching defs:ERROR

28 __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR',

32 'captureWarnings', 'critical', 'debug', 'disable', 'error',
130 ERROR = 40
139 ERROR : 'ERROR',
145 'ERROR' : ERROR,
157 If the level is one of the predefined levels (CRITICAL, ERROR, WARNING,
364 WARNING, ERROR, CRITICAL)
366 "WARNING", "ERROR", "CRITICAL")
1148 def error(self, msg, *args, **kwargs):
1150 Log 'msg % args' with severity 'ERROR'.
1155 logger.error("Houston, we have a %s", "major problem", exc_info=1)
1157 if self.isEnabledFor(ERROR):
1158 self._log(ERROR, msg, args, **kwargs)
1162 Convenience method for logging an ERROR with exception information.
1164 self.error(msg, exc_info=1, *args)
1289 logger hierarchy. If no handler was found, output a one-off error
1422 def error(self, msg, *args, **kwargs):
1424 Delegate an error call to the underlying logger, after adding
1428 self.logger.error(msg, *args, **kwargs)
1437 self.logger.error(msg, *args, **kwargs)
1561 def error(msg, *args, **kwargs):
1563 Log a message with severity 'ERROR' on the root logger.
1567 root.error(msg, *args, **kwargs)
1571 Log a message with severity 'ERROR' on the root logger,
1574 error(msg, exc_info=1, *args)