diff --git a/collector/src/compile/execute/bencher.rs b/collector/src/compile/execute/bencher.rs index ac19a9ebc..a54ea49c1 100644 --- a/collector/src/compile/execute/bencher.rs +++ b/collector/src/compile/execute/bencher.rs @@ -345,9 +345,9 @@ impl SelfProfileS3Upload { let start = std::time::Instant::now(); let status = self.0.wait().expect("waiting for child"); if !status.success() { - panic!("S3 upload failed: {:?}", status); + log::error!("S3 upload failed: {status:?}"); + } else { + log::trace!("uploaded to S3, additional wait: {:?}", start.elapsed()); } - - log::trace!("uploaded to S3, additional wait: {:?}", start.elapsed()); } }