From 16b24e892ebbb22da8538a673352d99b407f7902 Mon Sep 17 00:00:00 2001 From: Julia Ryan Date: Tue, 18 Nov 2025 15:25:12 -0800 Subject: [PATCH] Increase error verbosity (#43013) Closes #42288 This will actually print the parsing error that prevented the vscode settings file from being loaded which should make it easier for users to self help when they have an invalid config. Release Notes: - N/A --- crates/onboarding/src/onboarding.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/onboarding/src/onboarding.rs b/crates/onboarding/src/onboarding.rs index 562dea8748eaddad415d7098f6c34f0bea7b5169..404af2c74f9524aa1d52db39de2354bbe4564240 100644 --- a/crates/onboarding/src/onboarding.rs +++ b/crates/onboarding/src/onboarding.rs @@ -449,7 +449,7 @@ pub async fn handle_import_vscode_settings( match settings::VsCodeSettings::load_user_settings(source, fs.clone()).await { Ok(vscode_settings) => vscode_settings, Err(err) => { - zlog::error!("{err}"); + zlog::error!("{err:?}"); let _ = cx.prompt( gpui::PromptLevel::Info, &format!("Could not find or load a {source} settings file"),