1 2 3 4 5 6 7
use std::panic; pub fn set_hook() { panic::set_hook(Box::new(|pi| { crate::log::error(&format!("panic: {:?}", pi)); })); }