]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
Lower log level of messages about cache entries not existing
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Fri, 20 Dec 2024 10:02:59 +0000 (11:02 +0100)
committerJörg Behrmann <behrmann@physik.fu-berlin.de>
Fri, 20 Dec 2024 10:33:08 +0000 (11:33 +0100)
mkosi/__init__.py

index aec950af793368cdc159ece02b4c923bccfda029..749b8818dec6b2df5c8991c3fd999652c3cb72f4 100644 (file)
@@ -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