diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-12 13:45:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-12 13:45:39 +0000 |
commit | 3f08b7f1eadc8d181c76339d14c7abb4f49cad57 (patch) | |
tree | 9ec7d976a8e2d3273e6376b03b5c31183ca55a42 | |
parent | d4731a3f7dbd6aac8ae8dbf5187a72654c3b5733 (diff) | |
download | ast2050-yocto-poky-3f08b7f1eadc8d181c76339d14c7abb4f49cad57.zip ast2050-yocto-poky-3f08b7f1eadc8d181c76339d14c7abb4f49cad57.tar.gz |
bitbake/knotty.py: Ensure task note messages are only surpressed at default log levels
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 34180fb..042dbe9 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py @@ -113,8 +113,12 @@ def main(server, eventHandler): if isinstance(event, logging.LogRecord): if event.levelno >= format.ERROR: return_value = 1 - if event.taskpid != 0 and event.levelno <= format.NOTE: - continue + # For "normal" logging conditions, don't show note logs from tasks + # but do show them if the user has changed the default log level to + # include verbose/debug messages + if logger.getEffectiveLevel() > format.VERBOSE: + if event.taskpid != 0 and event.levelno <= format.NOTE: + continue logger.handle(event) continue |