about summary refs log tree commit diff
path: root/compiler/rustc_transmute/src/maybe_transmutable/query_context.rs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_transmute/src/maybe_transmutable/query_context.rs')
-rw-r--r--compiler/rustc_transmute/src/maybe_transmutable/query_context.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_transmute/src/maybe_transmutable/query_context.rs b/compiler/rustc_transmute/src/maybe_transmutable/query_context.rs
index ab9bcd232f0..1a66b6cfe00 100644
--- a/compiler/rustc_transmute/src/maybe_transmutable/query_context.rs
+++ b/compiler/rustc_transmute/src/maybe_transmutable/query_context.rs
@@ -52,7 +52,7 @@ mod rustc {
 
         type Scope = Ty<'tcx>;
 
-        #[tracing::instrument(skip(self))]
+        #[instrument(level = "DEBUG", skip(self))]
         fn is_accessible_from(&self, def: Self::Def, scope: Self::Scope) -> bool {
             use layout::rustc::Def;
             use rustc_middle::ty;
@@ -82,7 +82,7 @@ mod rustc {
                 false
             };
 
-            tracing::trace!(ret = ?ret, "ret");
+            tracing::trace!(?ret, "ret");
             ret
         }