summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/ast.py
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2021-02-09 09:50:21 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-10 23:48:16 +0000
commit75f87db413f3659fee18eff389b7b339b01cce15 (patch)
treee733135549b516c72c4f34172b6bbf865377fc76 /bitbake/lib/bb/parse/ast.py
parent7283a0b3b6ca49d0d2e13593333a580ef10439a8 (diff)
downloadpoky-75f87db413f3659fee18eff389b7b339b01cce15.tar.gz
bitbake: logging: Make bitbake logger compatible with python logger
The bitbake logger overrode the definition of the debug() logging call to include a debug level, but this causes problems with code that may be using standard python logging, since the extra argument is interpreted differently. Instead, change the bitbake loggers debug() call to match the python logger call and add a debug2() and debug3() API to replace calls that were logging to a different debug level. [RP: Small fix to ensure bb.debug calls bbdebug()] (Bitbake rev: f68682a79d83e6399eb403f30a1f113516575f51) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/parse/ast.py')
-rw-r--r--bitbake/lib/bb/parse/ast.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py
index 0714296af2..0596993d01 100644
--- a/bitbake/lib/bb/parse/ast.py
+++ b/bitbake/lib/bb/parse/ast.py
@@ -34,7 +34,7 @@ class IncludeNode(AstNode):
34 Include the file and evaluate the statements 34 Include the file and evaluate the statements
35 """ 35 """
36 s = data.expand(self.what_file) 36 s = data.expand(self.what_file)
37 logger.debug(2, "CONF %s:%s: including %s", self.filename, self.lineno, s) 37 logger.debug2("CONF %s:%s: including %s", self.filename, self.lineno, s)
38 38
39 # TODO: Cache those includes... maybe not here though 39 # TODO: Cache those includes... maybe not here though
40 if self.force: 40 if self.force:
@@ -376,7 +376,7 @@ def _create_variants(datastores, names, function, onlyfinalise):
376def multi_finalize(fn, d): 376def multi_finalize(fn, d):
377 appends = (d.getVar("__BBAPPEND") or "").split() 377 appends = (d.getVar("__BBAPPEND") or "").split()
378 for append in appends: 378 for append in appends:
379 logger.debug(1, "Appending .bbappend file %s to %s", append, fn) 379 logger.debug("Appending .bbappend file %s to %s", append, fn)
380 bb.parse.BBHandler.handle(append, d, True) 380 bb.parse.BBHandler.handle(append, d, True)
381 381
382 onlyfinalise = d.getVar("__ONLYFINALISE", False) 382 onlyfinalise = d.getVar("__ONLYFINALISE", False)