//! Stable stderr class markers (C14): `aura: note: ` for benign //! diagnostics on a continuing run (exit code unaffected), //! `aura: warning: ` for recorded faults the run survives. //! Error lines that accompany a non-zero exit — and plain info lines //! such as the run-record summary — keep the bare `aura:` prefix; for //! errors, the exit-code partition is the machine contract. macro_rules! note { ($($arg:tt)*) => { eprintln!("aura: note: {}", format_args!($($arg)*)) }; } macro_rules! warning { ($($arg:tt)*) => { eprintln!("aura: warning: {}", format_args!($($arg)*)) }; } pub(crate) use {note, warning};