diff options
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/br.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/br.rs b/src/bin/br.rs index f472840..f2be2bf 100644 --- a/src/bin/br.rs +++ b/src/bin/br.rs @@ -17,13 +17,13 @@ static mut VERBOSE: bool = false; macro_rules! verbose { ($($tokens:tt)*) => { if unsafe { VERBOSE } { - eprint!("{BOLD}{BLUE}[INFO]: {WHITE}"); eprint!($($tokens)*); + eprint!("{BOLD}{BLUE}[INFO]{NORMAL}: "); eprint!($($tokens)*); eprintln!("{NORMAL}"); } }; } macro_rules! error { ($($tokens:tt)*) => {{ - eprint!("{BOLD}{RED}[ERROR]: {WHITE}"); eprint!($($tokens)*); + eprint!("{BOLD}{RED}[ERROR]{WHITE}: "); eprint!($($tokens)*); eprintln!("{NORMAL}"); }}; } |