crashlog 0.1.5

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

/// Immediately panic
pub fn main() {
    crashlog::setup!(cargo_metadata!(), false);
    panic!();
}