macro_rules! warn {
($msg:literal) => { ... };
($($arg:tt)*) => { ... };
}Expand description
Sends a warning EVS event (EventType::Error — non-catastrophic).
cFS EVS has no dedicated warning level; this maps to
EventType::Error which is defined as “not catastrophic.”
ⓘ
warn!("temperature high: {} C", temp)?;