fix(complete): Send debug statements to stderr

This commit is contained in:
Ed Page 2022-04-27 15:49:32 -05:00
parent d4ddc5f6d6
commit bbf6488ede

View file

@ -10,8 +10,8 @@ macro_rules! w {
#[cfg(feature = "debug")]
macro_rules! debug {
($($arg:tt)*) => {
print!("[{:>w$}] \t", module_path!(), w = 28);
println!($($arg)*)
eprint!("[{:>w$}] \t", module_path!(), w = 28);
eprintln!($($arg)*)
}
}