macro_rules! info { ($($arg:tt)*) => { ... }; }
Logs a message at the INFO level. The message is formatted using standard Rust formatting.
use loggit::info; info!("Informational message.");