info

Macro info 

Source
macro_rules! info {
    ($($arg:tt)*) => { ... };
}
Expand description

Logs a message with the info prefix

ยงExample

use report::info;

let data = 42;
info!("Data: {data}");