Macro fatalf

Source
macro_rules! fatalf {
    ($($args:expr),* $(,)?) => { ... };
}
Expand description

Emit a fatal level log message using printf format string semantics.

Note: fatalf only emits a log message and does not cause a panic!()

use pw_log::fatalf;

fatalf!("Log Fact: All out of log facts! Timber!");