Skip to content

Commit

Permalink
fix: remove println from regular_rename func
Browse files Browse the repository at this point in the history
  • Loading branch information
tom1919 authored Dec 20, 2024
1 parent 112fa22 commit 213f215
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/mount/src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 213f215

Please sign in to comment.