remove loud log

This commit is contained in:
Bryan Stitt 2023-05-12 23:27:19 -07:00
parent 4b7f88367d
commit 1639405f6d

View File

@ -115,8 +115,6 @@ impl PeakEwmaLatencyTask {
fn update(&mut self, rtt: Duration) {
let rtt = nanos(rtt);
info!("updating rtt: {}ns", rtt);
let now = Instant::now();
debug_assert!(
self.update_at <= now,