Skip to content

Commit 518a6c0

Browse files
committed
Fix import on Windows
1 parent a277403 commit 518a6c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/restore.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,6 @@ fn restore_symlink(path: &Path, entry: &IndexEntry) -> Result<()> {
295295
fn restore_symlink(_restore_path: &Path, entry: &IndexEntry) -> Result<()> {
296296
// TODO: Add a test with a canned index containing a symlink, and expect
297297
// it cannot be restored on Windows and can be on Unix.
298-
warn!("Can't restore symlinks on non-Unix: {}", entry.apath());
298+
tracing::warn!("Can't restore symlinks on non-Unix: {}", entry.apath());
299299
Ok(())
300300
}

0 commit comments

Comments
 (0)