Home
last modified time | relevance | path

Searched refs:levelno (Results 1 – 10 of 10) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dmsg.py75 def getLevelName(self, levelno): argument
77 return self.levelnames[levelno]
79 self.levelnames[levelno] = value = 'Level %d' % levelno
83 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 …]
H A Devent.py163 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]:
H A Dtinfoil.py489 if event.taskpid == 0 or event.levelno > logging.INFO:
804 if event.taskpid == 0 or event.levelno > logging.INFO:
H A Dcodeparser.py236 if self.target.isEnabledFor(record.levelno):
/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dteamcity.py105 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.WARNING
225 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:
H A Dtoasterui.py278 if event.levelno == -1:
279 event.levelno = formatter.ERROR
283 if event.levelno >= formatter.ERROR:
285 elif event.levelno == formatter.WARNING:
291 if event.taskpid != 0 and event.levelno <= formatter.NOTE:
H A Dknotty.py124 …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…
H A Dbuildinfohelper.py868 self.levelno = None
1576 mockevent.levelno = formatter.ERROR
1584 mockevent.levelno = -1
1593 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
H A Dncurses.py264 … mw.appendText(logging.getLevelName(event.levelno) + ': ' + event.getMessage() + '\n')
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Ddecorators.py33 return record.levelno == 100