Skip to content

Commit

Permalink
Remove Tags from tracing (#2704)
Browse files Browse the repository at this point in the history
Oops, these show in `tracing` now, and they're huge.
  • Loading branch information
charliermarsh authored Mar 28, 2024
1 parent 4cc91cc commit f8f7f84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/uv-distribution/src/distribution_database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<LocalWheel, Error> {
match dist {
Dist::Built(built) => self.get_wheel(built).await,
Expand Down

0 comments on commit f8f7f84

Please sign in to comment.