From 21dac6646552dcacb68a0ad167723976f27b5c47 Mon Sep 17 00:00:00 2001 From: Joseph Date: Wed, 31 Oct 2018 17:30:52 +0300 Subject: Better output on panic (#1129) --- src/main.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src') diff --git a/src/main.rs b/src/main.rs index 3865e9253..515f60f88 100644 --- a/src/main.rs +++ b/src/main.rs @@ -66,11 +66,7 @@ fn main() { // https://github.com/rust-lang/cargo/issues/2738 // Therefore this hack. std::panic::set_hook(Box::new(|panic_info| { - if let Some(location) = panic_info.location() { - eprintln!("PANIC file '{}' line {}", location.file(), location.line()); - } else { - eprintln!("PANIC occurred but can't get location information..."); - } + eprintln!("{}", panic_info.to_string()); std::process::abort(); })); -- cgit v1.2.3