core: Turn off rtdebug logging

Accidentally left in on at some point
This commit is contained in:
Brian Anderson 2013-04-24 12:11:55 -07:00
parent 1962803854
commit 08659f5acc

View File

@ -11,7 +11,7 @@
#[macro_escape];
// Some basic logging
macro_rules! rtdebug (
macro_rules! rtdebug_ (
($( $arg:expr),+) => ( {
dumb_println(fmt!( $($arg),+ ));
@ -26,7 +26,7 @@ macro_rules! rtdebug (
)
// An alternate version with no output, for turning off logging
macro_rules! rtdebug_ (
macro_rules! rtdebug (
($( $arg:expr),+) => ( $(let _ = $arg)*; )
)