don't log cache miss by default

This is expected and happens regular, so there is no value in logging
this.
This commit is contained in:
Jörg Thalheim
2025-03-11 12:02:42 +01:00
parent 98d566c46e
commit f882c86fb0

View File

@@ -489,7 +489,7 @@ class Flake:
self._cache.load_from_file(self.flake_cache_path)
if not self._cache.is_cached(selector):
log.info(f"Cache miss for {selector}")
log.debug(f"Cache miss for {selector}")
self.get_from_nix([selector], nix_options)
value = self._cache.select(selector)
return value