From f8f7f848f5d9e6a89fce79559f52880b9c7a212f Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 27 Mar 2024 22:18:54 -0400 Subject: [PATCH] Remove `Tags` from `tracing` (#2704) Oops, these show in `tracing` now, and they're huge. --- crates/uv-distribution/src/distribution_database.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-distribution/src/distribution_database.rs b/crates/uv-distribution/src/distribution_database.rs index 8d92e8db2..9e2c48ce9 100644 --- a/crates/uv-distribution/src/distribution_database.rs +++ b/crates/uv-distribution/src/distribution_database.rs @@ -86,7 +86,7 @@ impl<'a, Context: BuildContext + Send + Sync> DistributionDatabase<'a, Context> /// /// If `no_remote_wheel` is set, the wheel will be built from a source distribution /// even if compatible pre-built wheels are available. - #[instrument(skip(self))] + #[instrument(skip_all, fields(%dist))] pub async fn get_or_build_wheel(&self, dist: &Dist, tags: &Tags) -> Result { match dist { Dist::Built(built) => self.get_wheel(built).await,