summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/__init__.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-11 13:05:40 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-11 13:15:12 +0100
commit56cd778eb021a3632aa6b2cb1ec53182512fd38e (patch)
tree665bdfd93dcc18c15999dd04e87f578d9e16c16a /bitbake/lib/bb/parse/__init__.py
parentc0bdb8100f44f08cc1bc880792d0ea52f8ba1bf8 (diff)
downloadpoky-56cd778eb021a3632aa6b2cb1ec53182512fd38e.tar.gz
bitbake: parse: Improve file inheritance logging
The file inheritance logging has been here since the dawn of time. It duplicates output many times over and logs to debug level 2. When running with the debug option, its understandable the user may want to see the paths of files included in the build. These changes remove pointless/duplicate output and print the include paths clearly at debug level one in a form which users should be able to more easily parse. (Bitbake rev: 633a56987df639295fe9128418da5634050063e5) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/parse/__init__.py')
-rw-r--r--bitbake/lib/bb/parse/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/__init__.py b/bitbake/lib/bb/parse/__init__.py
index e4a44dda11..bf5ed05e7f 100644
--- a/bitbake/lib/bb/parse/__init__.py
+++ b/bitbake/lib/bb/parse/__init__.py
@@ -121,7 +121,6 @@ def resolve_file(fn, d):
121 if not os.path.isfile(fn): 121 if not os.path.isfile(fn):
122 raise IOError("file %s not found" % fn) 122 raise IOError("file %s not found" % fn)
123 123
124 logger.debug(2, "LOAD %s", fn)
125 return fn 124 return fn
126 125
127# Used by OpenEmbedded metadata 126# Used by OpenEmbedded metadata