From 306fcfe7189fdae2f40d94ecb0720545bef24ab8 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 5 Feb 2025 20:35:11 -0500 Subject: [PATCH] Use consistent 'Registry' prefix for wheel and source distribution logs (#11270) ## Summary We say "Registry requirement already cached" for source distributions, but for wheels, it's just "Requirement already cached". --- crates/uv-installer/src/plan.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/uv-installer/src/plan.rs b/crates/uv-installer/src/plan.rs index 1e737e4f7..b0a26b9bf 100644 --- a/crates/uv-installer/src/plan.rs +++ b/crates/uv-installer/src/plan.rs @@ -131,8 +131,7 @@ impl<'a> Planner<'a> { } Some(&entry.dist) }) { - debug!("Requirement already cached: {distribution}"); - // STOPSHIP(charlie): If these are mismatched, skip and warn. + debug!("Registry requirement already cached: {distribution}"); cached.push(CachedDist::Registry(distribution.clone())); continue; }