Macro flipperzero::info

source ·
macro_rules! info {
    (target: $target:expr, $msg:expr $(, $arg:expr)*) => { ... };
    ($msg:expr $(, $arg:expr)*) => { ... };
}
Expand description

Logs a message at the info level.

Examples

use flipperzero::info;

let name = "Flipper";

info!("It's {}'s birthday today!", name);
info!(target: "events", "Birthday party today: {}", name);