diff options
Diffstat (limited to 'bitbake/lib/bb/ui')
-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 41f1ba83af..77a708258a 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
@@ -351,7 +351,7 @@ def main(server, eventHandler, params, tf = TerminalFilter): | |||
351 | # For "normal" logging conditions, don't show note logs from tasks | 351 | # For "normal" logging conditions, don't show note logs from tasks |
352 | # but do show them if the user has changed the default log level to | 352 | # but do show them if the user has changed the default log level to |
353 | # include verbose/debug messages | 353 | # include verbose/debug messages |
354 | if event.taskpid != 0 and event.levelno <= format.NOTE: | 354 | if event.taskpid != 0 and event.levelno <= format.NOTE and (event.levelno < llevel or (event.levelno == format.NOTE and llevel != format.VERBOSE)): |
355 | continue | 355 | continue |
356 | logger.handle(event) | 356 | logger.handle(event) |
357 | continue | 357 | continue |