diff options
-rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 936d5a4fb1..11afb3e744 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
@@ -472,7 +472,7 @@ def main(server, eventHandler, params, tf = TerminalFilter): | |||
472 | continue | 472 | continue |
473 | 473 | ||
474 | # Prefix task messages with recipe/task | 474 | # Prefix task messages with recipe/task |
475 | if event.taskpid in helper.running_tasks: | 475 | if event.taskpid in helper.running_tasks and event.levelno != format.PLAIN: |
476 | taskinfo = helper.running_tasks[event.taskpid] | 476 | taskinfo = helper.running_tasks[event.taskpid] |
477 | event.msg = taskinfo['title'] + ': ' + event.msg | 477 | event.msg = taskinfo['title'] + ': ' + event.msg |
478 | if hasattr(event, 'fn'): | 478 | if hasattr(event, 'fn'): |