about summary refs log tree commit diff
diff options
context:
space:
mode:
authormark <markm@cs.wisc.edu>2018-06-22 19:59:29 -0500
committermark <markm@cs.wisc.edu>2018-06-24 16:16:14 -0500
commit16d7f87b6cd416175cf145a17230051f83b15bf8 (patch)
tree1825559ad14e04e8bc49061595abe6daf9410919
parent997655cf87bc981b58b303c842343c750d104efa (diff)
downloadrust-16d7f87b6cd416175cf145a17230051f83b15bf8.tar.gz
rust-16d7f87b6cd416175cf145a17230051f83b15bf8.zip
used debug, not info
-rw-r--r--src/librustc_allocator/expand.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/librustc_allocator/expand.rs b/src/librustc_allocator/expand.rs
index 547d5f26cf8..60d28d8098b 100644
--- a/src/librustc_allocator/expand.rs
+++ b/src/librustc_allocator/expand.rs
@@ -66,7 +66,7 @@ struct ExpandAllocatorDirectives<'a> {
 
 impl<'a> Folder for ExpandAllocatorDirectives<'a> {
     fn fold_item(&mut self, item: P<Item>) -> SmallVector<P<Item>> {
-        info!("in submodule {}", self.in_submod);
+        debug!("in submodule {}", self.in_submod);
 
         let name = if attr::contains_name(&item.attrs, "global_allocator") {
             "global_allocator"
@@ -160,11 +160,11 @@ impl<'a> Folder for ExpandAllocatorDirectives<'a> {
 
     // If we enter a submodule, take note.
     fn fold_mod(&mut self, m: Mod) -> Mod {
-        info!("enter submodule");
+        debug!("enter submodule");
         self.in_submod += 1;
         let ret = fold::noop_fold_mod(m, self);
         self.in_submod -= 1;
-        info!("exit submodule");
+        debug!("exit submodule");
         ret
     }