macro_rules! error {
($($arg:tt)*) => { ... };
}Expand description
error!("...") → crate::log::error with format! arguments.
§Examples
let path = "Cargo.toml";
actions_rs::error!("{path}: missing `version` field");macro_rules! error {
($($arg:tt)*) => { ... };
}error!("...") → crate::log::error with format! arguments.
let path = "Cargo.toml";
actions_rs::error!("{path}: missing `version` field");