about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTomasz Miąsko <tomasz.miasko@gmail.com>2020-11-07 00:00:00 +0000
committerTomasz Miąsko <tomasz.miasko@gmail.com>2020-11-07 19:56:08 +0100
commit425675da426e825ab879c202ca27a0705497559a (patch)
treebcba7678d44c9bd9824bbb95e3dbc3a856aebd8a
parent0256d065d4901b63def6c04013da4f781d0752bb (diff)
downloadrust-425675da426e825ab879c202ca27a0705497559a.tar.gz
rust-425675da426e825ab879c202ca27a0705497559a.zip
Less verbose debug logging from inlining integrator
The inlining integrator produces relatively verbose and uninteresting
logs.  Move them from a debug log level to a trace level, so that they
can be easily isolated from others.
-rw-r--r--compiler/rustc_mir/src/transform/inline.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/rustc_mir/src/transform/inline.rs b/compiler/rustc_mir/src/transform/inline.rs
index 4de93739992..f3d2ab9590e 100644
--- a/compiler/rustc_mir/src/transform/inline.rs
+++ b/compiler/rustc_mir/src/transform/inline.rs
@@ -425,7 +425,7 @@ impl Inliner<'tcx> {
                 }
 
                 let dest = if dest_needs_borrow(destination.0) {
-                    debug!("creating temp for return destination");
+                    trace!("creating temp for return destination");
                     let dest = Rvalue::Ref(
                         self.tcx.lifetimes.re_erased,
                         BorrowKind::Mut { allow_two_phase_borrow: false },
@@ -633,7 +633,7 @@ impl Inliner<'tcx> {
             }
         }
 
-        debug!("creating temp for argument {:?}", arg);
+        trace!("creating temp for argument {:?}", arg);
         // Otherwise, create a temporary for the arg
         let arg = Rvalue::Use(arg);
 
@@ -703,19 +703,19 @@ impl<'a, 'tcx> Integrator<'a, 'tcx> {
                 Local::new(self.new_locals.start.index() + (idx - self.args.len()))
             }
         };
-        debug!("mapping local `{:?}` to `{:?}`", local, new);
+        trace!("mapping local `{:?}` to `{:?}`", local, new);
         new
     }
 
     fn map_scope(&self, scope: SourceScope) -> SourceScope {
         let new = SourceScope::new(self.new_scopes.start.index() + scope.index());
-        debug!("mapping scope `{:?}` to `{:?}`", scope, new);
+        trace!("mapping scope `{:?}` to `{:?}`", scope, new);
         new
     }
 
     fn map_block(&self, block: BasicBlock) -> BasicBlock {
         let new = BasicBlock::new(self.new_blocks.start.index() + block.index());
-        debug!("mapping block `{:?}` to `{:?}`", block, new);
+        trace!("mapping block `{:?}` to `{:?}`", block, new);
         new
     }
 }