macro_rules! dbg_eprint {
($($message:expr),*) => { ... };
}Expand description
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.