log

Macro log 

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

Log to the console using standard rust formatting.

ยงExample

log!("this is a log");