macro_rules! debug {
($($arg:tt)*) => { ... };
}
Expand description
Print a message suitable for debug information.
It takes the same arguments as eprint!
.
It outputs to std::io::Stderr
by default. If you need more control than that, use debugfmt!
instead.