macro_rules! fatal_error {
($msg:expr) => { ... };
($msg:expr,) => { ... };
($fmt:expr, $($arg:tt)+) => { ... };
}Expand description
Interrupts the program and log error message WARNING: this macro must not be called before the logger is initialized !