From: Daan De Meyer Date: Fri, 20 Dec 2024 10:02:59 +0000 (+0100) Subject: Lower log level of messages about cache entries not existing X-Git-Tag: v25~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f69c9525a9ebb71e73792712a1db323dcc99fae7;p=thirdparty%2Fmkosi.git Lower log level of messages about cache entries not existing --- diff --git a/mkosi/__init__.py b/mkosi/__init__.py index aec950af7..749b8818d 100644 --- a/mkosi/__init__.py +++ b/mkosi/__init__.py @@ -2982,11 +2982,11 @@ def have_cache(config: Config) -> bool: final, build, manifest = cache_tree_paths(config) if not final.exists(): - logging.info(f"{final} does not exist, not reusing cached images") + logging.debug(f"{final} does not exist, not reusing cached images") return False if need_build_overlay(config) and not build.exists(): - logging.info(f"{build} does not exist, not reusing cached images") + logging.debug(f"{build} does not exist, not reusing cached images") return False if manifest.exists(): @@ -3007,7 +3007,7 @@ def have_cache(config: Config) -> bool: return False else: - logging.info(f"{manifest} does not exist, not reusing cached images") + logging.debug(f"{manifest} does not exist, not reusing cached images") return False return True