crashlog 0.1.5

Panic handling for humans
Documentation
1
2
3
4
5
6
use crashlog::cargo_metadata;

pub fn main() {
    crashlog::setup!(cargo_metadata!(default = ""), true, "{package} crashed :(");
    panic!();
}