macro_rules! log {
() => { ... };
($($arg:tt)*) => { ... };
}
Expand description
Log a message. These messages are always emitted regardless of debug or release, if a corresponding logger was configured.
If you want to log something just for local debugging, use debug_log!
instead.