log::info! [-]  [+] [src]

macro_rules! info {
    ($($arg:tt)*) => (
        log!($crate::LogLevel::Info, $($arg)*);
    )
}

Logs a message at the info level.

Logging at this level is disabled if any of the following cfgs are present: log_level = "off", log_level = "error", or log_level = "warn".