Skip to content

Commit f8f7f84

Browse files
Remove Tags from tracing (#2704)
Oops, these show in `tracing` now, and they're huge.
1 parent 4cc91cc commit f8f7f84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/uv-distribution/src/distribution_database.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl<'a, Context: BuildContext + Send + Sync> DistributionDatabase<'a, Context>
8686
///
8787
/// If `no_remote_wheel` is set, the wheel will be built from a source distribution
8888
/// even if compatible pre-built wheels are available.
89-
#[instrument(skip(self))]
89+
#[instrument(skip_all, fields(%dist))]
9090
pub async fn get_or_build_wheel(&self, dist: &Dist, tags: &Tags) -> Result<LocalWheel, Error> {
9191
match dist {
9292
Dist::Built(built) => self.get_wheel(built).await,

0 commit comments

Comments
 (0)