macro_rules! debug {
($($arg:tt)*) => { ... };
}Expand description
debug!("x = {x}") → crate::log::debug with format! arguments.
§Examples
let key = "v2-linux";
actions_rs::debug!("cache key = {key}");macro_rules! debug {
($($arg:tt)*) => { ... };
}debug!("x = {x}") → crate::log::debug with format! arguments.
let key = "v2-linux";
actions_rs::debug!("cache key = {key}");