[][src]Macro debug_print::debug_eprint

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

Prints to the standard error 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.eprint.html for more info.