From 8004e8e2a008034883b9d26ffd81ba793e59aa1d Mon Sep 17 00:00:00 2001 From: Reilly Wood <26268125+rgwood@users.noreply.github.com> Date: Mon, 16 May 2022 20:04:41 -0400 Subject: [PATCH] Enable backtraces by default (#5562) --- src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.rs b/src/main.rs index a6559dfda6..fcc2c0bf2b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -37,6 +37,11 @@ use std::{ thread_local! { static IS_PERF: RefCell = RefCell::new(false) } fn main() -> Result<()> { + // Enable backtraces on panic to help diagnostics + if std::env::var("RUST_BACKTRACE").is_err() { + std::env::set_var("RUST_BACKTRACE", "1"); + } + // miette::set_panic_hook(); let miette_hook = std::panic::take_hook(); std::panic::set_hook(Box::new(move |x| {