You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 1, 2024. It is now read-only.
Add a HookBuilder method that will enable (default) or disable output of tracked location.
e.g
use color_eyre::config::HookBuilder;fnmain() -> eyre::Result<()>{HookBuilder::new().display_location(false).install()?;
eyre::bail!("an error");}
gives
Error:
0: an error
Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
Run with RUST_BACKTRACE=full to include source snippets.