Macro debug

Source
macro_rules! debug {
    ($($args:tt)*) => { ... };
}
Expand description

Prints a line to the debug output.

This is similar to the standard std::println!() macro and supports the same formatting.