Macro pw_log::debug

source ·
macro_rules! debug {
    ($($args:expr),*) => { ... };
}
Expand description

Emit a debug level log message using core:fmt format string semantics.

use pw_log::debug;

debug!("Log Fact: The American toy Lincoln Logs were inspired by the {} in {}.",
    "Imperial Hotel" as &str, "Tokyo" as &str);