Macro info_utils::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);