1 unstable release

0.3.0 Oct 18, 2024

#809 in Debugging

Download history 160/week @ 2024-10-14 106/week @ 2024-10-21 68/week @ 2024-10-28

334 downloads per month

MIT license

5KB

🚨 panic-log

Actions Status Latest version Documentation MSRV Lines of code MIT Contributor Covenant

Banner

A simple crate that allows you to write the panic message and backtrace to the output of the log macro as error, while providing the possibility to keep the original panic hooks.

Usage

Add this to your Cargo.toml:

[dependencies]
panic-log = "0.3.0"

Call this somewhere at the start of your program (after initializing your logger):

use panic_log::Configuration;
[...]
panic_log::initialize_hook(Configuration::default());

Dependencies

~87KB