Skip to content

Commit 11d2d33

Browse files
committed
fixup! Debug fs::rename with println!
1 parent 76292bf commit 11d2d33

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

  • delete-nonreduced-fuzz-inputs/src

delete-nonreduced-fuzz-inputs/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,7 @@ fn move_files_to_parent_dir(dir: &PathBuf) -> AppResult {
497497
for name in names {
498498
let from = dir.join(&name);
499499
let to = parent.join(&name);
500+
println!("fs::rename: {} -> {}", from.display(), to.display());
500501
fs::rename(&from, &to).map_err(|e| format!("fs::rename failed: {}", e.to_string()))?;
501502
}
502503

0 commit comments

Comments
 (0)