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