Macro info_utils::logs

source ·
macro_rules! logs {
    ($($msg:tt)*) => { ... };
}
Expand description

Logs

Logs noncritical information to the console.

Example

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