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;