Skip to content

Commit 08659f5

Browse files
committed
core: Turn off rtdebug logging
Accidentally left in on at some point
1 parent 1962803 commit 08659f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#[macro_escape];
1212

1313
// Some basic logging
14-
macro_rules! rtdebug (
14+
macro_rules! rtdebug_ (
1515
($( $arg:expr),+) => ( {
1616
dumb_println(fmt!( $($arg),+ ));
1717

@@ -26,7 +26,7 @@ macro_rules! rtdebug (
2626
)
2727

2828
// An alternate version with no output, for turning off logging
29-
macro_rules! rtdebug_ (
29+
macro_rules! rtdebug (
3030
($( $arg:expr),+) => ( $(let _ = $arg)*; )
3131
)
3232

0 commit comments

Comments
 (0)