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

info

Macro info 

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