From e4c90be58a44ff05152ac92a7bf35c67f05dafab Mon Sep 17 00:00:00 2001 From: Julia Ryan Date: Fri, 24 Oct 2025 19:02:06 -0700 Subject: [PATCH] Add more detailed error for remove_file (#41147) This should help us debug #40958. Release Notes: - N/A --- crates/auto_update_helper/src/updater.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/auto_update_helper/src/updater.rs b/crates/auto_update_helper/src/updater.rs index f741f0eaff253a189a7ca2f592fa628364236d63..2acd9cee3a3df9634cb384311a204be4eec88538 100644 --- a/crates/auto_update_helper/src/updater.rs +++ b/crates/auto_update_helper/src/updater.rs @@ -197,7 +197,7 @@ pub(crate) fn perform_update(app_dir: &Path, hwnd: Option, launch: bool) break; } - log::error!("Operation failed: {}", err); + log::error!("Operation failed: {} ({:?})", err, io_err.kind()); std::thread::sleep(Duration::from_millis(50)); } }