From fef4ea11ee3fbebfcb9618af4142c60b29dd1c4e Mon Sep 17 00:00:00 2001 From: Brice Dobry Date: Thu, 19 Dec 2024 20:18:47 -0500 Subject: [PATCH] chore: remove debug print --- stacks-common/src/util/lru_cache.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/stacks-common/src/util/lru_cache.rs b/stacks-common/src/util/lru_cache.rs index 97b55e69bc..41f55613e2 100644 --- a/stacks-common/src/util/lru_cache.rs +++ b/stacks-common/src/util/lru_cache.rs @@ -167,7 +167,6 @@ impl LruCache { pub fn flush(&mut self, mut f: impl FnMut(&K, V) -> Result<(), E>) -> Result<(), E> { let mut index = self.head; while index != self.capacity { - println!("checking {index}, dirty? {}", self.order[index].dirty); let next = self.order[index].next; if self.order[index].dirty { let value = self.order[index].value;