Skip to main content

info

Macro info 

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

Sends an informational EVS event (EventType::Info).

Event ID is derived from the call-site line number.

info!("system nominal")?;
info!("processed {} packets", count)?;