From 7cd416c63e6c8fd9d71bd4c343085266b11d9a39 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Fri, 25 Aug 2023 21:42:18 -0600 Subject: [PATCH] Always log panics --- crates/zed/src/main.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/zed/src/main.rs b/crates/zed/src/main.rs index da726eef65d16e9ffeaa84141506c7e1b184a76a..22a22ab0cf75adbb5394c36102fe87175a35e4b3 100644 --- a/crates/zed/src/main.rs +++ b/crates/zed/src/main.rs @@ -495,11 +495,11 @@ fn init_panic_hook(app: &App, installation_id: Option) { installation_id: installation_id.clone(), }; - if is_pty { - if let Some(panic_data_json) = serde_json::to_string_pretty(&panic_data).log_err() { - eprintln!("{}", panic_data_json); - } - } else { + if let Some(panic_data_json) = serde_json::to_string_pretty(&panic_data).log_err() { + log::error!("{}", panic_data_json); + } + + if !is_pty { if let Some(panic_data_json) = serde_json::to_string(&panic_data).log_err() { let timestamp = chrono::Utc::now().format("%Y_%m_%d %H_%M_%S").to_string(); let panic_file_path = paths::LOGS_DIR.join(format!("zed-{}.panic", timestamp));