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-05 20:11:16 -05:00 committed by GitHub
parent 53175263a1
commit 74e17c2f64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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();