macro_rules! log_error {
($($arg:tt)*) => { ... };
}
Expand description
ยงMacro rules - log_error!
The log_error 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 error function from the crate with the current time and formatted message.