From a95575215a5f1dbd6bafcaa4f430ca7b6f46acd9 Mon Sep 17 00:00:00 2001 From: Kristofer Rye Date: Sun, 31 Jan 2021 10:15:23 -0600 Subject: [PATCH] space: Remove eprintln! (It was a debugging print, so it should either be a log! invocation or removed entirely. I went with the latter.) Signed-off-by: Kristofer Rye --- src/space.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/space.rs b/src/space.rs index 11a7443..38146ba 100644 --- a/src/space.rs +++ b/src/space.rs @@ -84,8 +84,6 @@ where .filter(|e| e.applies_at(time)) .collect(); - eprintln!("{}, x{}", current_parts.len(), current_exceptions.len()); - if !current_exceptions.is_empty() { let exception = current_exceptions[0];