From 5fba6987a384d5e4c8e04ea7d893a19e2049adde Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Thu, 25 Jun 2026 16:19:33 +0200 Subject: [PATCH] fix(capture): remove debug println! from hash_exists --- crates/archivr-core/src/capture.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/archivr-core/src/capture.rs b/crates/archivr-core/src/capture.rs index 603faa6..c2345d7 100644 --- a/crates/archivr-core/src/capture.rs +++ b/crates/archivr-core/src/capture.rs @@ -332,9 +332,6 @@ fn determine_source(path: &str) -> Source { fn hash_exists(hash: &str, file_extension: &str, store_path: &Path) -> Result { let path = store_path.join(raw_relative_path_from_hash(hash, file_extension)?); - - println!("Checking {}", path.display()); - Ok(path.exists()) }