aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-02 22:24:33 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-09 00:03:19 +0000
commit7a6517243dbfecfd78f82f6709fbeaab2fb03e2c (patch)
treebbdebbbf34f25e3d6d566aa42eaf87c83372e8bb
parent0a3bf681530bd63fc0036ca81ef868ab53fde56c (diff)
downloadbitbake-7a6517243dbfecfd78f82f6709fbeaab2fb03e2c.tar.gz
__init__.py: Fix bitbake debug log handling
For a while I've been puzzled as to why debug logging from runqueue wouldn't appear on the console with -DD. The logic in the bbdebug handling is inverted so fix it and now we see the expected messages from runqueue with -D and -DD. This should then let us debug other issues using those log messages. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/__init__.py b/lib/bb/__init__.py
index 09e161fef..c7bc372ec 100644
--- a/lib/bb/__init__.py
+++ b/lib/bb/__init__.py
@@ -49,7 +49,7 @@ class BBLoggerMixin(object):
if not bb.event.worker_pid:
if self.name in bb.msg.loggerDefaultDomains and loglevel > (bb.msg.loggerDefaultDomains[self.name]):
return
- if loglevel > bb.msg.loggerDefaultLogLevel:
+ if loglevel < bb.msg.loggerDefaultLogLevel:
return
return self.log(loglevel, msg, *args, **kwargs)