log_inf

Macro log_inf 

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

Log an informational message with [I] prefix and automatic newline.

Produces the same console output as the C OVE_LOG_INF macro.

§Example

ove::log_inf!("Consumer: count = {}", val);
// Output: [I] Consumer: count = 42\n