aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-12-28 00:03:27 +0000
committerArmin Kuster <akuster808@gmail.com>2020-01-02 20:23:09 -0800
commit46969195492708a705390896c9dea515f158954c (patch)
tree6239f5af8297cfa604f4acf930ec51e552e3f770
parente21bf572cfe18e805d3f849777189685f7391a67 (diff)
downloadbitbake-contrib-46969195492708a705390896c9dea515f158954c.tar.gz
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. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 1a9247c468cf09da60e5d396ccb81e950841c99e) Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--lib/bb/cache.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index b6f7da592..ead8abc5d 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -208,10 +208,10 @@ class CoreRecipeInfo(RecipeInfoCommon):
# Collect files we may need for possible world-dep
# calculations
- if self.not_world:
- logger.debug(1, "EXCLUDE FROM WORLD: %s", fn)
- else:
+ if not self.not_world:
cachedata.possible_world.append(fn)
+ #else:
+ # logger.debug(2, "EXCLUDE FROM WORLD: %s", fn)
# create a collection of all targets for sanity checking
# tasks, such as upstream versions, license, and tools for