File tree 1 file changed +0
-24
lines changed 1 file changed +0
-24
lines changed Original file line number Diff line number Diff line change @@ -23,30 +23,6 @@ pub fn set_quiet_mode(is_quiet: bool) {
23
23
QUIET_MODE . store ( is_quiet, Ordering :: Relaxed ) ;
24
24
}
25
25
26
- // NOTE: Remove `allow`s after first use.
27
- #[ expect( unused_macros) ]
28
- macro_rules! quiet_println {
29
- ( $( $tt: tt) * ) => { {
30
- if !crate :: utils:: logging:: is_quiet_mode( ) {
31
- println!( $( $tt) * ) ;
32
- }
33
- } } ;
34
- }
35
- #[ expect( unused_imports) ]
36
- pub ( crate ) use quiet_println;
37
-
38
- // NOTE: Remove `allow`s after first use.
39
- #[ expect( unused_macros) ]
40
- macro_rules! quiet_eprintln {
41
- ( $( $tt: tt) * ) => { {
42
- if !crate :: utils:: logging:: is_quiet_mode( ) {
43
- eprintln!( $( $tt) * ) ;
44
- }
45
- } } ;
46
- }
47
- #[ expect( unused_imports) ]
48
- pub ( crate ) use quiet_eprintln;
49
-
50
26
// Globally shared ProgressBar instance.
51
27
lazy_static ! {
52
28
static ref PROGRESS_BAR : RwLock <Option <Weak <ProgressBar >>> = RwLock :: new( None ) ;
You can’t perform that action at this time.
0 commit comments