Macro logger_rust::log_info

source ·
macro_rules! log_info {
    ($($arg:tt)*) => { ... };
}
Expand description

Macro rules - log_info!

The log_info macro takes any number of arguments and formats them using the format! macro. It then gets the current time using the current_time function from the crate and calls the info function from the crate with the current time and formatted message.