diff --git a/avbroot/src/cli/mod.rs b/avbroot/src/cli/mod.rs index 053e66b..f3d4ba9 100644 --- a/avbroot/src/cli/mod.rs +++ b/avbroot/src/cli/mod.rs @@ -14,13 +14,13 @@ pub mod ramdisk; macro_rules! status { ($($arg:tt)*) => { - println!("\x1b[1m[*] {}\x1b[0m", format!($($arg)*)) + eprintln!("\x1b[1m[*] {}\x1b[0m", format!($($arg)*)) } } macro_rules! warning { ($($arg:tt)*) => { - println!("\x1b[1;31m[WARNING] {}\x1b[0m", format!($($arg)+)) + eprintln!("\x1b[1;31m[WARNING] {}\x1b[0m", format!($($arg)*)) } }