From f67c4bec1fa9e2e96cd307c99a5ddc1777495b47 Mon Sep 17 00:00:00 2001 From: Rebecca Turner Date: Mon, 18 Sep 2023 09:29:18 -0700 Subject: [PATCH] Display location information --- src/main.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index f44fee04..1c238a15 100644 --- a/src/main.rs +++ b/src/main.rs @@ -578,13 +578,10 @@ fn install_color_eyre() -> Result<()> { // Don't display the backtrace reminder by default: // Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it. // Run with RUST_BACKTRACE=full to include source snippets. - // Backtraces can be enabled with the `--backtrace` switch or the `RUST_BACKTRACE` - // environment variable (documented in the `--help` output). .display_env_section(false) - // Don't display location information by default: + // Display location information by default: // Location: // src/steps.rs:92 - // Location information is displayed in the backtrace, but usually isn't needed anyways. - .display_location_section(false) + .display_location_section(true) .install() }