summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs6
1 files changed, 1 insertions, 5 deletions
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();
}));