From 97777cda66068e300bd133f534f21a8ac387be17 Mon Sep 17 00:00:00 2001 From: konsti Date: Sun, 7 Sep 2025 17:31:50 +0200 Subject: [PATCH] Don't trace logs all architectures (#15710) On my machine, this statement print over 500 lines for `uv python list -vv` of evident statements. --- crates/uv-platform/src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/uv-platform/src/lib.rs b/crates/uv-platform/src/lib.rs index fe5b5061f..c9adb8fb9 100644 --- a/crates/uv-platform/src/lib.rs +++ b/crates/uv-platform/src/lib.rs @@ -111,10 +111,6 @@ impl Platform { // See https://github.com/astral-sh/uv/pull/9788 // For now, allow same architecture family as a fallback if self.arch.family() != other.arch.family() { - trace!( - "Architecture `{}` is not compatible with `{}`", - self.arch, other.arch - ); return false; }