From: Daan De Meyer Date: Thu, 16 Jan 2025 23:01:56 +0000 (+0100) Subject: Improve cache manifest mismatch logging message X-Git-Tag: v25~43^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a4656c7b7aa6d7dcf486d0a2f89ac158a5cb070c;p=thirdparty%2Fmkosi.git Improve cache manifest mismatch logging message --- diff --git a/mkosi/__init__.py b/mkosi/__init__.py index e96b807e3..c5f62df43 100644 --- a/mkosi/__init__.py +++ b/mkosi/__init__.py @@ -3037,7 +3037,7 @@ def have_cache(config: Config) -> bool: prev = json.loads(manifest.read_text()) new = json.dumps(config.cache_manifest(), cls=JsonEncoder, indent=4, sort_keys=True) if prev != json.loads(new): - logging.info("Cache manifest mismatch, not reusing cached images") + logging.info(f"Cache manifest mismatch for {config.name()} image, not reusing cached images") if ARG_DEBUG.get(): run( ["diff", "--unified", workdir(manifest), "-"],