1
Fork 0
mirror of https://github.com/thegeneralist01/archivr synced 2026-07-21 18:55:36 +02:00

fix(capture): remove debug println! from hash_exists

This commit is contained in:
TheGeneralist 2026-06-25 16:19:33 +02:00
parent 351e74df09
commit 5fba6987a3
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4

View file

@ -332,9 +332,6 @@ fn determine_source(path: &str) -> Source {
fn hash_exists(hash: &str, file_extension: &str, store_path: &Path) -> Result<bool> {
let path = store_path.join(raw_relative_path_from_hash(hash, file_extension)?);
println!("Checking {}", path.display());
Ok(path.exists())
}