| Crates.io | panic-log |
| lib.rs | panic-log |
| version | 0.3.0 |
| created_at | 2024-10-18 09:55:04.716273+00 |
| updated_at | 2024-10-18 09:55:04.716273+00 |
| description | Log panics to the `log` macro as error |
| homepage | https://traverseresearch.nl |
| repository | https://github.com/Traverse-Research/panic-log |
| max_upload_size | |
| id | 1414108 |
| size | 5,889 |
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.
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());