diff --git a/rust/lance-io/src/object_store/tracing.rs b/rust/lance-io/src/object_store/tracing.rs index 44b43c3431e..fc2e1b825ae 100644 --- a/rust/lance-io/src/object_store/tracing.rs +++ b/rust/lance-io/src/object_store/tracing.rs @@ -31,12 +31,12 @@ impl MultipartUpload for TracedMultipartUpload { Box::pin(fut.instrument(write_span)) } - #[instrument(level = "debug")] + #[instrument(level = "debug", skip_all)] async fn complete(&mut self) -> OSResult { self.target.complete().await } - #[instrument(level = "debug")] + #[instrument(level = "debug", skip_all)] async fn abort(&mut self) -> OSResult<()> { self.target.abort().await }