We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70e986d commit ee2dd35Copy full SHA for ee2dd35
collector/src/compile/benchmark/mod.rs
@@ -330,6 +330,7 @@ impl Benchmark {
330
preparation_start.elapsed().as_secs()
331
);
332
333
+ let benchmark_start = std::time::Instant::now();
334
for &backend in backends {
335
for (profile, prep_dir) in &profile_dirs {
336
let profile = *profile;
@@ -414,6 +415,11 @@ impl Benchmark {
414
415
}
416
417
418
+ log::trace!(
419
+ "benchmarking {} took {} seconds",
420
+ self.name,
421
+ benchmark_start.elapsed().as_secs()
422
+ );
423
424
Ok(())
425
0 commit comments