Home
last modified time | relevance | path

Searched refs:BBLogFormatter (Results 1 – 11 of 11) sorted by relevance

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ui/
H A Dteamcity.py110 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:
167 forcelevel = bb.msg.BBLogFormatter.ERROR
169 forcelevel = bb.msg.BBLogFormatter.WARNING
225 event.levelno = bb.msg.BBLogFormatter.WARNING
230 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:
H A Dknotty.py117 …if record.levelno == bb.msg.BBLogFormatter.NOTE and (record.msg.startswith("Running") or record.ms…
427 console_loglevel = bb.msg.BBLogFormatter.ERROR
429 console_loglevel = bb.msg.BBLogFormatter.WARNING
669 if event.levelno >= bb.msg.BBLogFormatter.ERRORONCE:
672 elif event.levelno == bb.msg.BBLogFormatter.WARNING:
679 … <= bb.msg.BBLogFormatter.NOTE and (event.levelno < llevel or (event.levelno == bb.msg.BBLogFormat…
683 …idmap and event.levelno not in [bb.msg.BBLogFormatter.PLAIN, bb.msg.BBLogFormatter.WARNONCE, bb.ms…
686 …asattr(event, 'fn') and event.levelno not in [bb.msg.BBLogFormatter.WARNONCE, bb.msg.BBLogFormatte…
H A Dtoasterui.py70 logformat = bb.msg.BBLogFormatter(format_str)
146 formatter = bb.msg.BBLogFormatter(format_str)
H A Dbuildinfohelper.py42 from bb.msg import BBLogFormatter as formatter
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dmsg.py22 class BBLogFormatter(logging.Formatter): class
136 if record.levelno == bb.msg.BBLogFormatter.WARNONCE:
140 if record.levelno == bb.msg.BBLogFormatter.ERRORONCE:
171 loggerDefaultLogLevel = BBLogFormatter.NOTE
179 bb.msg.loggerDefaultLogLevel = BBLogFormatter.DEBUG - debug + 1
181 bb.msg.loggerDefaultLogLevel = BBLogFormatter.VERBOSE
183 bb.msg.loggerDefaultLogLevel = BBLogFormatter.NOTE
213 return getattr(BBLogFormatter, level)
232 format = bb.msg.BBLogFormatter("%(levelname)s: %(message)s")
H A Devent.py133 from bb.msg import BBLogFormatter
145 formatter = BBLogFormatter("%(levelname)s: %(message)s")
H A Dbuild.py273 logformatter = bb.msg.BBLogFormatter("%(levelname)s: %(message)s")
/OK3568_Linux_fs/yocto/poky/scripts/lib/
H A Dscriptutils.py71 from bb.msg import BBLogFormatter
75 isinstance(handler.formatter, BBLogFormatter)):
/OK3568_Linux_fs/yocto/poky/bitbake/lib/prserv/
H A Dserv.py196 formatter = bb.msg.BBLogFormatter("%(levelname)s: %(message)s")
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Devent.py21 from bb.msg import BBLogFormatter
32 formatter = BBLogFormatter("%(levelname)s: %(message)s")
/OK3568_Linux_fs/yocto/poky/bitbake/bin/
H A Dbitbake-worker71 conlogformat = bb.msg.BBLogFormatter(format_str)