#[allow(unknown_lints, unused_macros)]
macro_rules! log_enabled {
($($x:tt)*) => {
false
};
}
#[allow(unknown_lints, unused_macros)]
macro_rules! debug {
($( $x:tt )*) => { format_args!($( $x )*); }
}
#[allow(unknown_lints, unused_macros)]
macro_rules! error {
($( $x:tt )*) => { format_args!($( $x )*); }
}
#[allow(unknown_lints, unused_macros)]
macro_rules! info {
($( $x:tt )*) => { format_args!($( $x )*); }
}
#[allow(unknown_lints, unused_macros)]
macro_rules! log {
($( $x:tt )*) => { format_args!($( $x )*); }
}
#[allow(unknown_lints, unused_macros)]
macro_rules! trace {
($( $x:tt )*) => { format_args!($( $x )*); }
}
#[allow(unknown_lints, unused_macros)]
macro_rules! warn {
($( $x:tt )*) => { format_args!($( $x )*); }
}