Don't trace logs all architectures (#15710)

On my machine, this statement print over 500 lines for `uv python list
-vv` of evident statements.
This commit is contained in:
konsti 2025-09-07 17:31:50 +02:00 committed by GitHub
parent 2fd9e53b25
commit 97777cda66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}