diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-12-28 00:03:27 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-02 16:43:01 +0000 |
commit | 3e108b70176dee3495f3afcea1c0c87cccf2a379 (patch) | |
tree | c24993a0c12b70027ca5e2bb9daa6ef4127a04f2 /bitbake/lib | |
parent | 5f349cc227ec010aaf52b7d5311935102c2cc6d9 (diff) | |
download | poky-3e108b70176dee3495f3afcea1c0c87cccf2a379.tar.gz |
bitbake: cache: Lower debug level for wold build messages
These messages spam the logs for no good reason, they were useful for debugging
a particular problem long ago but are distracting noise now. Disable them.
(Bitbake rev: 1a9247c468cf09da60e5d396ccb81e950841c99e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/cache.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index b6f7da5920..ead8abc5d8 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
@@ -208,10 +208,10 @@ class CoreRecipeInfo(RecipeInfoCommon): | |||
208 | 208 | ||
209 | # Collect files we may need for possible world-dep | 209 | # Collect files we may need for possible world-dep |
210 | # calculations | 210 | # calculations |
211 | if self.not_world: | 211 | if not self.not_world: |
212 | logger.debug(1, "EXCLUDE FROM WORLD: %s", fn) | ||
213 | else: | ||
214 | cachedata.possible_world.append(fn) | 212 | cachedata.possible_world.append(fn) |
213 | #else: | ||
214 | # logger.debug(2, "EXCLUDE FROM WORLD: %s", fn) | ||
215 | 215 | ||
216 | # create a collection of all targets for sanity checking | 216 | # create a collection of all targets for sanity checking |
217 | # tasks, such as upstream versions, license, and tools for | 217 | # tasks, such as upstream versions, license, and tools for |