diff options
Diffstat (limited to 'bitbake/lib/bb/parse/ast.py')
-rw-r--r-- | bitbake/lib/bb/parse/ast.py | 4 |
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): | |||
376 | def multi_finalize(fn, d): | 376 | def 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) |