macro_rules! indicatif_eprintln {
($($arg:tt)*) => { ... };
}
Expand description
Helper macro that allows you to print to stderr without interfering with the progress bars created by tracing-indicatif.
Args are directly forwarded to writeln!
. Do not call this macro inside of
suspend_tracing_indicatif
or you will trigger a deadlock.