Skip to main content

debug

Macro debug 

Source
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}");