[][src]Macro debug_print::debug_println

macro_rules! debug_println {
    ($($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.println.html for more info.