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.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py
index 37d6b1a0cf..9a9fe6f2d8 100644
--- a/bitbake/lib/bb/ui/toasterui.py
+++ b/bitbake/lib/bb/ui/toasterui.py
@@ -143,6 +143,8 @@ def main(server, eventHandler, params ):
143 143
144 # these events are unprocessed now, but may be used in the future to log 144 # these events are unprocessed now, but may be used in the future to log
145 # timing and error informations from the parsing phase in Toaster 145 # timing and error informations from the parsing phase in Toaster
146 if isinstance(event, (bb.event.SanityCheckPassed, bb.event.SanityCheck)):
147 continue
146 if isinstance(event, bb.event.ParseStarted): 148 if isinstance(event, bb.event.ParseStarted):
147 continue 149 continue
148 if isinstance(event, bb.event.ParseProgress): 150 if isinstance(event, bb.event.ParseProgress):
@@ -209,7 +211,6 @@ def main(server, eventHandler, params ):
209 continue 211 continue
210 212
211 if isinstance(event, (bb.event.BuildCompleted)): 213 if isinstance(event, (bb.event.BuildCompleted)):
212 buildinfohelper.update_build_information(event, errors, warnings, taskfailures)
213 continue 214 continue
214 215
215 if isinstance(event, (bb.command.CommandCompleted, 216 if isinstance(event, (bb.command.CommandCompleted,