[][src]Macro debug_print::debug_print

macro_rules! debug_print {
    ($($arg:tt)*) => { ... };
}

Prints to the standard ouput only in debug build.
In release build this macro is not compiled thanks to #[cfg(debug_assertions)].
see https://doc.rust-lang.org/std/macro.print.html for more info.