about summary refs log tree commit diff
path: root/compiler/rustc_trait_selection/src/solve/mod.rs
diff options
context:
space:
mode:
authorlcnr <rust@lcnr.de>2024-02-26 10:12:40 +0100
committerlcnr <rust@lcnr.de>2024-02-26 10:12:40 +0100
commiteeeb9b4d3148b9153a872fa61f29c9fb3efa5a64 (patch)
tree2912fa78d0c57370e1dae3914b28ca797e56cc97 /compiler/rustc_trait_selection/src/solve/mod.rs
parentdc00e8cdb6cfb6c75b4e98cdc181583cb7d11749 (diff)
downloadrust-eeeb9b4d3148b9153a872fa61f29c9fb3efa5a64.tar.gz
rust-eeeb9b4d3148b9153a872fa61f29c9fb3efa5a64.zip
add additional logging
Diffstat (limited to 'compiler/rustc_trait_selection/src/solve/mod.rs')
-rw-r--r--compiler/rustc_trait_selection/src/solve/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_trait_selection/src/solve/mod.rs b/compiler/rustc_trait_selection/src/solve/mod.rs
index 8b163d47d34..51094b781c0 100644
--- a/compiler/rustc_trait_selection/src/solve/mod.rs
+++ b/compiler/rustc_trait_selection/src/solve/mod.rs
@@ -267,6 +267,7 @@ impl<'tcx> EvalCtxt<'_, 'tcx> {
     /// This function is necessary in nearly all cases before matching on a type.
     /// Not doing so is likely to be incomplete and therefore unsound during
     /// coherence.
+    #[instrument(level = "debug", skip(self, param_env), ret)]
     fn structurally_normalize_ty(
         &mut self,
         param_env: ty::ParamEnv<'tcx>,