1 unstable release
0.3.0 | Oct 18, 2024 |
---|
#809 in Debugging
334 downloads per month
5KB
🚨 panic-log
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