macro_rules! debug_eprintln {
    () => { ... };
    ($($arg:tt)*) => { ... };
}
Expand description

Prints to the standard error, with a newline.

Equivalent to the eprintln! macro, except that it’s only effective for debug builds.