diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-09 13:31:25 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-11 12:27:56 +0100 |
commit | bc391938c46674cfddadac670b6be27ffb35641a (patch) | |
tree | 0529c6af6d54ddb63b707b018217ec16c6ace6a4 /bitbake/lib/bb/parse | |
parent | 60436dc604a0b1962e379e45d486d51810158ae2 (diff) | |
download | poky-bc391938c46674cfddadac670b6be27ffb35641a.tar.gz |
bitbake: parse/ast: Show append logging at lower log level
It was reported that bitbake -D made no mention of which append files it
was using. bitbake -DD does but it makes sense to increase the log level
of this piece of debug information.
[YOCTO #6262]
(Bitbake rev: 5824bf9c6feea05567d155911f4ab2e371911d34)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/parse')
-rw-r--r-- | bitbake/lib/bb/parse/ast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py index 0ad6d5811d..30380a4bf6 100644 --- a/bitbake/lib/bb/parse/ast.py +++ b/bitbake/lib/bb/parse/ast.py | |||
@@ -377,7 +377,7 @@ def _expand_versions(versions): | |||
377 | def multi_finalize(fn, d): | 377 | def multi_finalize(fn, d): |
378 | appends = (d.getVar("__BBAPPEND", True) or "").split() | 378 | appends = (d.getVar("__BBAPPEND", True) or "").split() |
379 | for append in appends: | 379 | for append in appends: |
380 | logger.debug(2, "Appending .bbappend file %s to %s", append, fn) | 380 | logger.debug(1, "Appending .bbappend file %s to %s", append, fn) |
381 | bb.parse.BBHandler.handle(append, d, True) | 381 | bb.parse.BBHandler.handle(append, d, True) |
382 | 382 | ||
383 | onlyfinalise = d.getVar("__ONLYFINALISE", False) | 383 | onlyfinalise = d.getVar("__ONLYFINALISE", False) |