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 @@ -66,7 +66,7 @@ struct ExpandAllocatorDirectives<'a> {
66
66
67
67
impl < ' a > Folder for ExpandAllocatorDirectives < ' a > {
68
68
fn fold_item ( & mut self , item : P < Item > ) -> SmallVector < P < Item > > {
69
- info ! ( "in submodule {}" , self . in_submod) ;
69
+ debug ! ( "in submodule {}" , self . in_submod) ;
70
70
71
71
let name = if attr:: contains_name ( & item. attrs , "global_allocator" ) {
72
72
"global_allocator"
@@ -160,11 +160,11 @@ impl<'a> Folder for ExpandAllocatorDirectives<'a> {
160
160
161
161
// If we enter a submodule, take note.
162
162
fn fold_mod ( & mut self , m : Mod ) -> Mod {
163
- info ! ( "enter submodule" ) ;
163
+ debug ! ( "enter submodule" ) ;
164
164
self . in_submod += 1 ;
165
165
let ret = fold:: noop_fold_mod ( m, self ) ;
166
166
self . in_submod -= 1 ;
167
- info ! ( "exit submodule" ) ;
167
+ debug ! ( "exit submodule" ) ;
168
168
ret
169
169
}
170
170
You can’t perform that action at this time.
0 commit comments