mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
Add more detailed error for remove_file (#41147)
This should help us debug #40958. Release Notes: - N/A
This commit is contained in:
parent
7433d85458
commit
e4c90be58a
1 changed files with 1 additions and 1 deletions
|
|
@ -197,7 +197,7 @@ pub(crate) fn perform_update(app_dir: &Path, hwnd: Option<isize>, launch: bool)
|
|||
break;
|
||||
}
|
||||
|
||||
log::error!("Operation failed: {}", err);
|
||||
log::error!("Operation failed: {} ({:?})", err, io_err.kind());
|
||||
std::thread::sleep(Duration::from_millis(50));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue