//! Custom panic hook support.
//!//! This does not currently support backtraces,
//! and mainly exists to look nice.
pubfninstall_panic_hook(){std::panic::set_hook(Box::new(panic_hook));}fnpanic_hook(info:&std::panic::PanicInfo){log::error!("{}", info);}