diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-21 17:25:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-26 08:10:34 +0100 |
commit | b2ef908be1cd6b4d705b403149e696e6c5ecc431 (patch) | |
tree | 06612fe44377f09f463d02593f4b3f74934d811a /bitbake/lib/bb/cache.py | |
parent | 36feb38045b7a2af86ece147fec54b0db3bf491f (diff) | |
download | poky-b2ef908be1cd6b4d705b403149e696e6c5ecc431.tar.gz |
bitbake: 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.
(Bitbake rev: b48d95677a4d285a77cda2892179965f7f8f06dd)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r-- | bitbake/lib/bb/cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index 96abd7141b..afd373da9b 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
@@ -395,6 +395,7 @@ class Cache(object): | |||
395 | @classmethod | 395 | @classmethod |
396 | def parse(cls, filename, appends, configdata, caches_array): | 396 | def parse(cls, filename, appends, configdata, caches_array): |
397 | """Parse the specified filename, returning the recipe information""" | 397 | """Parse the specified filename, returning the recipe information""" |
398 | logger.debug(1, "Parsing %s", filename) | ||
398 | infos = [] | 399 | infos = [] |
399 | datastores = cls.load_bbfile(filename, appends, configdata) | 400 | datastores = cls.load_bbfile(filename, appends, configdata) |
400 | depends = [] | 401 | depends = [] |
@@ -432,7 +433,6 @@ class Cache(object): | |||
432 | virtualfn = self.realfn2virtual(filename, variant) | 433 | virtualfn = self.realfn2virtual(filename, variant) |
433 | infos.append((virtualfn, self.depends_cache[virtualfn])) | 434 | infos.append((virtualfn, self.depends_cache[virtualfn])) |
434 | else: | 435 | else: |
435 | logger.debug(1, "Parsing %s", filename) | ||
436 | return self.parse(filename, appends, configdata, self.caches_array) | 436 | return self.parse(filename, appends, configdata, self.caches_array) |
437 | 437 | ||
438 | return cached, infos | 438 | return cached, infos |