From 199f28b4ab27ca938bfc1d2820090189dc6ded7c Mon Sep 17 00:00:00 2001 From: Tommy <35646257+tom1919@users.noreply.github.com> Date: Fri, 20 Dec 2024 02:45:57 -0500 Subject: [PATCH] fix: remove println from regular_rename func Signed-off-by: tom1919 --- crates/mount/src/file.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/mount/src/file.rs b/crates/mount/src/file.rs index 090562d442..9c87bf3b2f 100644 --- a/crates/mount/src/file.rs +++ b/crates/mount/src/file.rs @@ -272,8 +272,6 @@ async fn regular_rename(from: &str, to: &str) -> Result<(), LocalFileSystemError let from_path = String::from(from); let to_path = String::from(to); - println!("rr {from_path} -> {to_path}"); - tokio::task::spawn_blocking(move || { if std::fs::metadata(&to_path).is_ok() { Err(LocalFileSystemError::AlreadyExists {