Skip to content

Commit 9441496

Browse files
committed
notifications: use human-friendly log format for retrying renames
1 parent e1785a7 commit 9441496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ pub fn rename(
407407
// Permission denied, but as we work in users home dirs and
408408
// running programs like virus scanner are known to cause this
409409
// the heuristic is quite good.
410-
info!(source = %src.display(), destination = %dest.display(), "renaming file in use, retrying");
410+
info!("retrying renaming {} to {}", src.display(), dest.display());
411411
OperationResult::Retry(e)
412412
}
413413
#[cfg(target_os = "linux")]

0 commit comments

Comments
 (0)