Macro info

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

Logs a message at the INFO level. The message is formatted using standard Rust formatting.

ยงExample

use loggit::info;

info!("Informational message.");