summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-12-28 00:03:27 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-01-11 11:06:23 +0000
commitcf92a2d567260b91a259652bad0ecd790750f710 (patch)
tree6121a4c3d3b6c7b3df35a005e235b5089c43f223 /bitbake
parent5a7ede639f29a0d2044ee59ab64d9347d3791ab2 (diff)
downloadpoky-cf92a2d567260b91a259652bad0ecd790750f710.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: 46969195492708a705390896c9dea515f158954c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 1a9247c468cf09da60e5d396ccb81e950841c99e) Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cache.py6
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