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