log

Macro log 

Source
macro_rules! log {
    ($($arg:tt)*) => { ... };
}
Expand description

Macro for logging to both stdout and tracing info Usage: log!(“message”) or log!(“format {}”, arg)