From d3795c8277aa6f98a8156dd369a80076dd907183 Mon Sep 17 00:00:00 2001 From: phoenix Date: Tue, 15 Apr 2025 22:05:15 -0400 Subject: [PATCH] Removed println macros --- src/meta.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/meta.rs b/src/meta.rs index 8d5bf80..234ff50 100644 --- a/src/meta.rs +++ b/src/meta.rs @@ -123,13 +123,9 @@ mod tests { source_path: &String, destination_path: &String, ) -> Result { - println!("Copying file"); let src_path = std::path::Path::new(source_path); let dest_path = std::path::Path::new(destination_path); - println!("Src: {:?}", src_path); - println!("Dest: {:?}", dest_path); - match std::fs::copy(src_path, dest_path) { Ok(bytes) => Ok(bytes), Err(err) => Err(err),