summary refs log tree commit diff
path: root/compiler/rustc_query_impl/src
diff options
context:
space:
mode:
authorjyn <jyn.nelson@redjack.com>2023-12-19 12:39:58 -0500
committerjyn <jyn.nelson@redjack.com>2023-12-19 13:35:37 -0500
commitb5d8361909e9e30a11227aa773099c293a5dca55 (patch)
tree3b5eafcc77eaa1ec90dcbaa9437c8e9e37d2e059 /compiler/rustc_query_impl/src
parent558ac1cfb7c214d06ca471885a57caa6c8301bae (diff)
downloadrust-b5d8361909e9e30a11227aa773099c293a5dca55.tar.gz
rust-b5d8361909e9e30a11227aa773099c293a5dca55.zip
rename to verbose-internals
Diffstat (limited to 'compiler/rustc_query_impl/src')
-rw-r--r--compiler/rustc_query_impl/src/plumbing.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/compiler/rustc_query_impl/src/plumbing.rs b/compiler/rustc_query_impl/src/plumbing.rs
index acd3d71e636..9c859ba7746 100644
--- a/compiler/rustc_query_impl/src/plumbing.rs
+++ b/compiler/rustc_query_impl/src/plumbing.rs
@@ -315,8 +315,11 @@ pub(crate) fn create_query_frame<
             ty::print::with_forced_impl_filename_line!(do_describe(tcx, key))
         )
     );
-    let description =
-        if tcx.sess.verbose() { format!("{description} [{name:?}]") } else { description };
+    let description = if tcx.sess.verbose_internals() {
+        format!("{description} [{name:?}]")
+    } else {
+        description
+    };
     let span = if kind == dep_graph::dep_kinds::def_span || with_no_queries() {
         // The `def_span` query is used to calculate `default_span`,
         // so exit to avoid infinite recursion.