Skip to main content Skip to main content
Pigweed's logo Pigweed
  1. Home
  2. Reference
  3. Rust
  4. pw_log
  5. debug

debug

Macro debug 

Source
macro_rules! debug {
    ($($args:tt)*) => { ... };
}
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);