core: Turn off rtdebug logging
Accidentally left in on at some point
This commit is contained in:
parent
1962803854
commit
08659f5acc
@ -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)*; )
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user