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:99 color = self.COLORS[record.levelno]124 if record.levelno >= self.stdlevel:126 if record.name in self.debug_domains and record.levelno >= self.debug_domains[record.name]:136 if record.levelno == bb.msg.BBLogFormatter.WARNONCE:140 if record.levelno == bb.msg.BBLogFormatter.ERRORONCE:[all …]
155 if isinstance(event, logging.LogRecord) and event.levelno >= logging.WARNING:166 if event.levelno > logging.DEBUG:360 if event.levelno >= self.stdlevel:362 if event.name in self.debug_domains and event.levelno >= self.debug_domains[event.name]:
476 if event.taskpid == 0 or event.levelno > logging.INFO:781 if event.taskpid == 0 or event.levelno > logging.INFO:
196 if self.target.isEnabledFor(record.levelno):
110 if record.levelno in [bb.msg.BBLogFormatter.ERROR, bb.msg.BBLogFormatter.CRITICAL]:118 if record.levelno == bb.msg.BBLogFormatter.PLAIN:120 elif record.levelno == bb.msg.BBLogFormatter.WARNING:225 event.levelno = bb.msg.BBLogFormatter.WARNING230 if event.levelno <= bb.msg.BBLogFormatter.NOTE and (event.levelno < llevel or (231 … event.levelno == bb.msg.BBLogFormatter.NOTE and llevel != bb.msg.BBLogFormatter.VERBOSE)):235 … 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:
117 …if record.levelno == bb.msg.BBLogFormatter.NOTE and (record.msg.startswith("Running") or record.ms…669 if event.levelno >= bb.msg.BBLogFormatter.ERRORONCE:672 elif event.levelno == bb.msg.BBLogFormatter.WARNING:679 …if event.levelno <= bb.msg.BBLogFormatter.NOTE and (event.levelno < llevel or (event.levelno == bb…683 …if event.taskpid in helper.pidmap and event.levelno not in [bb.msg.BBLogFormatter.PLAIN, bb.msg.BB…686 …if hasattr(event, 'fn') and event.levelno not in [bb.msg.BBLogFormatter.WARNONCE, bb.msg.BBLogForm…
865 self.levelno = None1573 mockevent.levelno = formatter.ERROR1581 mockevent.levelno = -11590 if event.levelno < formatter.WARNING:1613 if event.levelno == formatter.CRITICAL:1615 elif event.levelno == formatter.ERROR:1617 elif event.levelno == formatter.WARNING:1619 elif event.levelno == -2: # toaster self-logging
261 … mw.appendText(logging.getLevelName(event.levelno) + ': ' + event.getMessage() + '\n')
118 return record.levelno == 100