1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/// Overrides for https://docs.rs/log/#macros
///
/// Source shared by `derive_builder_core` and `derive_builder` via symlink.
#[allow(unknown_lints, unused_macros)]
macro_rules! log_enabled {
    ($($x:tt)*) => {
        false
    };
}

// delegate to format_args and throw away the result to avoid `unused variable`
// lints.
// The compiler should be able to optimize this away.
#[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 )*); }
}