Skip to content

Commit 3de72ee

Browse files
committed
Print backtrace and log when panicking
1 parent 232e16d commit 3de72ee

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

crates/nil/src/server.rs

+12-7
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ use lsp_types::{
1111
Url,
1212
};
1313
use nix_interop::{flake_lock, FLAKE_FILE, FLAKE_LOCK_FILE};
14+
use std::backtrace::Backtrace;
1415
use std::cell::Cell;
1516
use std::collections::HashMap;
1617
use std::io::ErrorKind;
@@ -666,11 +667,14 @@ fn with_catch_unwind<T>(ctx: &str, f: impl FnOnce() -> Result<T> + UnwindSafe) -
666667
INSTALL_PANIC_HOOK.call_once(|| {
667668
let old_hook = panic::take_hook();
668669
panic::set_hook(Box::new(move |info| {
669-
if let Some(loc) = info.location() {
670-
PANIC_LOCATION.with(|inner| {
671-
inner.set(loc.to_string());
672-
});
673-
}
670+
let loc = info
671+
.location()
672+
.map(|loc| loc.to_string())
673+
.unwrap_or_default();
674+
let backtrace = Backtrace::force_capture();
675+
PANIC_LOCATION.with(|inner| {
676+
inner.set(format!("Location: {loc:#}\nBacktrace: {backtrace:#}"));
677+
});
674678
old_hook(info);
675679
}))
676680
});
@@ -685,9 +689,10 @@ fn with_catch_unwind<T>(ctx: &str, f: impl FnOnce() -> Result<T> + UnwindSafe) -
685689
.unwrap_or("unknown");
686690
let mut loc = PANIC_LOCATION.with(|inner| inner.take());
687691
if loc.is_empty() {
688-
loc = "unknown".into();
692+
loc = "Location: unknown".into();
689693
}
690-
bail!("Panicked in {ctx} at {loc}: {reason}");
694+
tracing::error!("Panicked in {ctx}: {reason}\n{loc}");
695+
bail!("Panicked in {ctx}: {reason}\n{loc}");
691696
}
692697
}
693698
}

0 commit comments

Comments
 (0)