[][src]Macro debug_print::debug_eprintln

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