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.
This commit is contained in:
Eric Huss 2023-08-28 15:04:10 -07:00
parent 2a6f7f6efe
commit 4ea6bcb592

View File

@ -68,7 +68,6 @@ impl<T> SleepTracker<T> {
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 {