From e118431d16d64543f5c2904af109ae9ba7e2965f Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Mon, 23 Jan 2017 08:50:24 -0800 Subject: Remove debug_print! macros The logging macros should be used instead. --- src/term/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/term/mod.rs') diff --git a/src/term/mod.rs b/src/term/mod.rs index 23d392e3..9d443723 100644 --- a/src/term/mod.rs +++ b/src/term/mod.rs @@ -1194,13 +1194,13 @@ impl ansi::Handler for Term { #[inline] fn configure_charset(&mut self, index: CharsetIndex, charset: StandardCharset) { - debug_println!("designate {:?} character set as {:?}", index, charset); + trace!("designate {:?} character set as {:?}", index, charset); self.charsets[index] = charset; } #[inline] fn set_active_charset(&mut self, index: CharsetIndex) { - debug_println!("Activate {:?} character set", index); + trace!("Activate {:?} character set", index); self.active_charset = index; } } -- cgit