diff --git a/crates/uv/src/lib.rs b/crates/uv/src/lib.rs index 345302946..b163526f5 100644 --- a/crates/uv/src/lib.rs +++ b/crates/uv/src/lib.rs @@ -428,6 +428,9 @@ async fn run(mut cli: Cli) -> Result { show_settings!(cache_settings, false); // Configure the cache. + if cache_settings.no_cache { + debug!("Disabling the uv cache due to `--no-cache`"); + } let cache = Cache::from_settings(cache_settings.no_cache, cache_settings.cache_dir)?; // Configure the global network settings.