]> git.lizzy.rs Git - rust.git/commitdiff
Remove the now-duplicate logging macros
authorAlex Crichton <alex@alexcrichton.com>
Mon, 21 Oct 2013 20:09:28 +0000 (13:09 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Tue, 22 Oct 2013 15:09:56 +0000 (08:09 -0700)
src/libsyntax/ext/expand.rs

index e1cc63fd0b82865161958ee767a093951ed7c1ad..1018e79aabc6e669894da1f094bc6b50162905b1 100644 (file)
@@ -838,14 +838,6 @@ macro_rules! fail(
         )
     )
 
-    // NOTE (acrichto): remove these after the next snapshot
-    macro_rules! log2( ($($arg:tt)*) => (log!($($arg)*)) )
-    macro_rules! error( ($($arg:tt)*) => (error!($($arg)*)) )
-    macro_rules! warn ( ($($arg:tt)*) => (warn!($($arg)*)) )
-    macro_rules! info ( ($($arg:tt)*) => (info!($($arg)*)) )
-    macro_rules! debug( ($($arg:tt)*) => (debug!($($arg)*)) )
-    macro_rules! fail( ($($arg:tt)*) => (fail!($($arg)*)) )
-
     macro_rules! assert(
         ($cond:expr) => {
             if !$cond {