diff options
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/runningbuild.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/runningbuild.py b/bitbake/lib/bb/ui/crumbs/runningbuild.py index bf72e2a725..f78969cc04 100644 --- a/bitbake/lib/bb/ui/crumbs/runningbuild.py +++ b/bitbake/lib/bb/ui/crumbs/runningbuild.py | |||
@@ -91,7 +91,8 @@ class RunningBuild (gobject.GObject): | |||
91 | parent = self.tasks_to_iter[(package, task)] | 91 | parent = self.tasks_to_iter[(package, task)] |
92 | 92 | ||
93 | if(isinstance(event, logging.LogRecord)): | 93 | if(isinstance(event, logging.LogRecord)): |
94 | if (event.msg.startswith ("Running task")): | 94 | if (event.levelno < logging.INFO or |
95 | event.msg.startswith("Running task")): | ||
95 | return # don't add these to the list | 96 | return # don't add these to the list |
96 | 97 | ||
97 | if event.levelno >= logging.ERROR: | 98 | if event.levelno >= logging.ERROR: |