Reduce chatter

This commit is contained in:
Dominik Werder
2023-02-06 14:14:19 +01:00
parent bdc43ddad6
commit cac7801ccb

View File

@@ -672,11 +672,11 @@ async fn update_task(do_abort: Arc<AtomicUsize>, node_config: NodeConfigCached)
} }
} }
let ts2 = Instant::now(); let ts2 = Instant::now();
let dt = ts2.duration_since(ts1).as_secs_f32() * 1e3; let dt = ts2.duration_since(ts1);
let now2 = Instant::now(); let now2 = Instant::now();
if print_last.duration_since(now2) > Duration::from_millis(59000) { if print_last.duration_since(now2) > Duration::from_millis(119000) || dt >= Duration::from_millis(4000) {
print_last = now2; print_last = now2;
info!("Done update task {:.0}ms", dt); info!("Done update task {:.0}ms", dt.as_secs_f32() * 1e3);
} }
} }
Ok(()) Ok(())