Searched refs:levelno (Results 1 – 10 of 10) sorted by relevance
75 def getLevelName(self, levelno): argument77 return self.levelnames[levelno]79 self.levelnames[levelno] = value = 'Level %d' % levelno83 record.levelname = self.getLevelName(record.levelno)84 if record.levelno == self.PLAIN:95 color = self.COLORS[record.levelno]120 if record.levelno >= self.stdlevel:122 if record.name in self.debug_domains and record.levelno >= self.debug_domains[record.name]:132 if record.levelno == bb.msg.BBLogFormatter.WARNONCE:136 if record.levelno == bb.msg.BBLogFormatter.ERRORONCE:[all …]
163 if isinstance(event, logging.LogRecord) and event.levelno >= logging.WARNING:174 if event.levelno > logging.DEBUG:365 if event.levelno >= self.stdlevel:367 if event.name in self.debug_domains and event.levelno >= self.debug_domains[event.name]:
489 if event.taskpid == 0 or event.levelno > logging.INFO:804 if event.taskpid == 0 or event.levelno > logging.INFO:
236 if self.target.isEnabledFor(record.levelno):
105 if record.levelno in [bb.msg.BBLogFormatter.ERROR, bb.msg.BBLogFormatter.CRITICAL]:113 if record.levelno == bb.msg.BBLogFormatter.PLAIN:115 elif record.levelno == bb.msg.BBLogFormatter.WARNING:220 event.levelno = bb.msg.BBLogFormatter.WARNING225 if event.levelno <= bb.msg.BBLogFormatter.NOTE and (event.levelno < llevel or (226 … event.levelno == bb.msg.BBLogFormatter.NOTE and llevel != bb.msg.BBLogFormatter.VERBOSE)):230 … if event.taskpid in helper.running_tasks and event.levelno != bb.msg.BBLogFormatter.PLAIN:
278 if event.levelno == -1:279 event.levelno = formatter.ERROR283 if event.levelno >= formatter.ERROR:285 elif event.levelno == formatter.WARNING:291 if event.taskpid != 0 and event.levelno <= formatter.NOTE:
124 …if record.levelno == bb.msg.BBLogFormatter.NOTE and (record.msg.startswith("Running") or record.ms…720 if event.levelno >= bb.msg.BBLogFormatter.ERRORONCE:723 elif event.levelno == bb.msg.BBLogFormatter.WARNING:730 …if event.levelno <= bb.msg.BBLogFormatter.NOTE and (event.levelno < llevel or (event.levelno == bb…734 …if event.taskpid in helper.pidmap and event.levelno not in [bb.msg.BBLogFormatter.PLAIN, bb.msg.BB…737 …if hasattr(event, 'fn') and event.levelno not in [bb.msg.BBLogFormatter.WARNONCE, bb.msg.BBLogForm…
868 self.levelno = None1576 mockevent.levelno = formatter.ERROR1584 mockevent.levelno = -11593 if event.levelno < formatter.WARNING:1616 if event.levelno == formatter.CRITICAL:1618 elif event.levelno == formatter.ERROR:1620 elif event.levelno == formatter.WARNING:1622 elif event.levelno == -2: # toaster self-logging
264 … mw.appendText(logging.getLevelName(event.levelno) + ': ' + event.getMessage() + '\n')
33 return record.levelno == 100