fatal

Macro fatal 

Source
macro_rules! fatal {
    ($($arg:tt)*) => { ... };
}
Expand description

Logs a message with severity Severity::Fatal.

Its usage is the same as println!.

ยงExamples

dmlog::fatal!("Something has gone very, very wrong!");

let lucky_number = 7;
dmlog::fatal!("Lucky number: {lucky_number}");