Fix panic-json writing (#35691)

We broke it in #35263 when we changed the open options to use
`create_new`

Release Notes:

- N/A
This commit is contained in:
Julia Ryan
2025-08-06 01:11:16 +00:00
committed by GitHub
parent 53175263a1
commit 74e17c2f64
+1
View File
@@ -149,6 +149,7 @@ pub fn init_panic_hook(
let timestamp = chrono::Utc::now().format("%Y_%m_%d %H_%M_%S").to_string();
let panic_file_path = paths::logs_dir().join(format!("zed-{timestamp}.panic"));
let panic_file = fs::OpenOptions::new()
.write(true)
.create_new(true)
.open(&panic_file_path)
.log_err();