summaryrefslogtreecommitdiffstats
path: root/lib/bb/cache.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-21 17:25:19 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-22 11:40:25 +0100
commitb48d95677a4d285a77cda2892179965f7f8f06dd (patch)
treeb516b531bd38727671d7676478f899f4da33d96b /lib/bb/cache.py
parent5fa0b3a19e7d0f40790f737abeddf499d53f1f6a (diff)
downloadbitbake-b48d95677a4d285a77cda2892179965f7f8f06dd.tar.gz
cache: Move the parsing message to a more logical place
Otherwise you can look at the log and wonder why parsing isn't happening when it really is due to other code paths. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cache.py')
-rw-r--r--lib/bb/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index 96abd7141..afd373da9 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -395,6 +395,7 @@ class Cache(object):
@classmethod
def parse(cls, filename, appends, configdata, caches_array):
"""Parse the specified filename, returning the recipe information"""
+ logger.debug(1, "Parsing %s", filename)
infos = []
datastores = cls.load_bbfile(filename, appends, configdata)
depends = []
@@ -432,7 +433,6 @@ class Cache(object):
virtualfn = self.realfn2virtual(filename, variant)
infos.append((virtualfn, self.depends_cache[virtualfn]))
else:
- logger.debug(1, "Parsing %s", filename)
return self.parse(filename, appends, configdata, self.caches_array)
return cached, infos