diff --git a/src/statistics.rs b/src/statistics.rs index d42a0a02..9f10c1c8 100644 --- a/src/statistics.rs +++ b/src/statistics.rs @@ -182,9 +182,7 @@ impl Stats { /// given an `Instant` update total runtime fn update_runtime(&self, seconds: f64) { if let Ok(mut runtime) = self.total_runtime.lock() { - log::error!("in the if"); runtime[0] = seconds; - log::error!("runtime: {} and runtimes: {:?}", seconds, runtime); } }