macro_rules! critical { ($($args:expr),*) => { ... }; }
Expand description
Emit a critical level log message using core::fmt
format string semantics.
use pw_log::critical;
critical!(
"Log Fact: Until the {}th century, all ships' masts were made from a single log.",
19 as u32);