Skip to content

Commit 4ea6bcb

Browse files
committed
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.
1 parent 2a6f7f6 commit 4ea6bcb

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/cargo/util/network/sleep.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ impl<T> SleepTracker<T> {
6868
let now = Instant::now();
6969
let mut result = Vec::new();
7070
while let Some(next) = self.heap.peek() {
71-
tracing::debug!("ERIC: now={now:?} next={:?}", next.wakeup);
7271
if next.wakeup < now {
7372
result.push(self.heap.pop().unwrap().data);
7473
} else {

0 commit comments

Comments
 (0)