diff options
| author | lcnr <rust@lcnr.de> | 2024-02-26 10:12:40 +0100 | 
|---|---|---|
| committer | lcnr <rust@lcnr.de> | 2024-02-26 10:12:40 +0100 | 
| commit | eeeb9b4d3148b9153a872fa61f29c9fb3efa5a64 (patch) | |
| tree | 2912fa78d0c57370e1dae3914b28ca797e56cc97 /compiler/rustc_trait_selection/src/solve/mod.rs | |
| parent | dc00e8cdb6cfb6c75b4e98cdc181583cb7d11749 (diff) | |
| download | rust-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.rs | 1 | 
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>, | 
