Skip to content

Commit

Permalink
core: Turn off rtdebug logging
Browse files Browse the repository at this point in the history
Accidentally left in on at some point
  • Loading branch information
brson committed Apr 24, 2013
1 parent 1962803 commit 08659f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcore/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#[macro_escape];

// Some basic logging
macro_rules! rtdebug (
macro_rules! rtdebug_ (
($( $arg:expr),+) => ( {
dumb_println(fmt!( $($arg),+ ));

Expand All @@ -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)*; )
)

Expand Down

3 comments on commit 08659f5

@bors
Copy link
Contributor

@bors bors commented on 08659f5 Apr 24, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from pcwalton
at brson@08659f5

@bors
Copy link
Contributor

@bors bors commented on 08659f5 Apr 24, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging brson/rust/io = 08659f5 into auto

@bors
Copy link
Contributor

@bors bors commented on 08659f5 Apr 24, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging brson/rust/io = 08659f5 into auto failed

Please sign in to comment.