macro_rules! infof { ($($args:expr),*) => { ... }; }
Expand description
Emit an info level log message using printf
format string semantics.
use pw_log::infof;
infof!(
"Log Fact: The American president Abraham Lincoln (born %x) once lived in a log cabin.",
0x1809);