Skip to content

Commit 806732a

Browse files
committed
core: Turn off rtdebug logging
1 parent ece0986 commit 806732a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/libcore/rt/mod.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
1112
// Some basic logging
12-
macro_rules! rtdebug (
13+
macro_rules! rtdebug_ (
1314
($( $arg:expr),+) => ( {
1415
dumb_println(fmt!( $($arg),+ ));
1516

@@ -30,7 +31,7 @@ macro_rules! rtdebug (
3031
)
3132

3233
// An alternate version with no output, for turning off logging
33-
macro_rules! rtdebug_ (
34+
macro_rules! rtdebug (
3435
($( $arg:expr),+) => ( $(let _ = $arg)*; )
3536
)
3637

0 commit comments

Comments
 (0)