1 2 3 4 5 6 7
pub(super) fn warn(scope: &str, message: &str) { eprintln!("warning[{scope}]: {message}"); } pub(super) fn err(scope: &str, message: &str) { eprintln!("error[{scope}]: {message}"); }