1#[macro_export] 2macro_rules! crit { 3 ($($t:tt)*) => { 4 // nosemgrep: ban-error-logging-level 5 ::tracing::error!($($t)*) 6 }; 7}