File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ struct ExpandAllocatorDirectives<'a> {
67
67
68
68
impl < ' a > Folder for ExpandAllocatorDirectives < ' a > {
69
69
fn fold_item ( & mut self , item : P < Item > ) -> SmallVector < P < Item > > {
70
- info ! ( "in submodule {}" , self . in_submod) ;
70
+ debug ! ( "in submodule {}" , self . in_submod) ;
71
71
72
72
let name = if attr:: contains_name ( & item. attrs , "global_allocator" ) {
73
73
"global_allocator"
@@ -163,11 +163,11 @@ impl<'a> Folder for ExpandAllocatorDirectives<'a> {
163
163
164
164
// If we enter a submodule, take note.
165
165
fn fold_mod ( & mut self , m : Mod ) -> Mod {
166
- info ! ( "enter submodule" ) ;
166
+ debug ! ( "enter submodule" ) ;
167
167
self . in_submod += 1 ;
168
168
let ret = fold:: noop_fold_mod ( m, self ) ;
169
169
self . in_submod -= 1 ;
170
- info ! ( "exit submodule" ) ;
170
+ debug ! ( "exit submodule" ) ;
171
171
ret
172
172
}
173
173
You can’t perform that action at this time.
0 commit comments