summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/toasterui.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/toasterui.py')
-rw-r--r--bitbake/lib/bb/ui/toasterui.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py
index dbe0d0980a..0ed774ee7b 100644
--- a/bitbake/lib/bb/ui/toasterui.py
+++ b/bitbake/lib/bb/ui/toasterui.py
@@ -145,10 +145,12 @@ def main(server, eventHandler, params ):
145 event.levelno = formatter.ERROR 145 event.levelno = formatter.ERROR
146 146
147 buildinfohelper.store_log_event(event) 147 buildinfohelper.store_log_event(event)
148
148 if event.levelno >= formatter.ERROR: 149 if event.levelno >= formatter.ERROR:
149 errors = errors + 1 150 errors = errors + 1
150 elif event.levelno == formatter.WARNING: 151 elif event.levelno == formatter.WARNING:
151 warnings = warnings + 1 152 warnings = warnings + 1
153
152 # For "normal" logging conditions, don't show note logs from tasks 154 # For "normal" logging conditions, don't show note logs from tasks
153 # but do show them if the user has changed the default log level to 155 # but do show them if the user has changed the default log level to
154 # include verbose/debug messages 156 # include verbose/debug messages