log

Macro log 

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

ยงLog

Logs noncritical information to the console.

Example

    let data = "important information";
    log!("program data: {}", data);