dbg_print

Macro dbg_print 

Source
macro_rules! dbg_print {
    ($($message:expr),*) => { ... };
}
Expand description

ยงBASIC print, println, eprint, eprintln functions

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.