macro_rules! warning {
($($arg:tt)*) => { ... };
}Expand description
warning!("...") → crate::log::warning with format! arguments.
§Examples
let pct = 92;
actions_rs::warning!("disk {pct}% full");macro_rules! warning {
($($arg:tt)*) => { ... };
}warning!("...") → crate::log::warning with format! arguments.
let pct = 92;
actions_rs::warning!("disk {pct}% full");