From 4ea6bcb5926ffd6599364c03d1ed7b12877b57b2 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Mon, 28 Aug 2023 15:04:10 -0700 Subject: [PATCH] Remove a debug log message that was not intended to be added. This was a temporary debug log message I added a long while ago, and apparently missed removing it when posting the PR. --- src/cargo/util/network/sleep.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cargo/util/network/sleep.rs b/src/cargo/util/network/sleep.rs index fab53263b..d3c770f85 100644 --- a/src/cargo/util/network/sleep.rs +++ b/src/cargo/util/network/sleep.rs @@ -68,7 +68,6 @@ impl SleepTracker { let now = Instant::now(); let mut result = Vec::new(); while let Some(next) = self.heap.peek() { - tracing::debug!("ERIC: now={now:?} next={:?}", next.wakeup); if next.wakeup < now { result.push(self.heap.pop().unwrap().data); } else {