macro_rules! fatal { ($($arg:tt)*) => { ... }; }
Logs an error message and panics with the same message.
// Use the macro from the crate root // fatal!("Something went wrong: {}", "error details");