@@ -17,7 +17,7 @@ impl<'a, 'tcx> BlanketImplFinder<'a, 'tcx> {
1717 let param_env = self . cx . tcx . param_env ( item_def_id) ;
1818 let ty = self . cx . tcx . type_of ( item_def_id) ;
1919
20- debug ! ( "get_blanket_impls({:?})" , ty) ;
20+ trace ! ( "get_blanket_impls({:?})" , ty) ;
2121 let mut impls = Vec :: new ( ) ;
2222 for & trait_def_id in self . cx . tcx . all_traits ( ( ) ) . iter ( ) {
2323 if !self . cx . cache . access_levels . is_public ( trait_def_id)
@@ -28,9 +28,10 @@ impl<'a, 'tcx> BlanketImplFinder<'a, 'tcx> {
2828 // NOTE: doesn't use `for_each_relevant_impl` to avoid looking at anything besides blanket impls
2929 let trait_impls = self . cx . tcx . trait_impls_of ( trait_def_id) ;
3030 for & impl_def_id in trait_impls. blanket_impls ( ) {
31- debug ! (
31+ trace ! (
3232 "get_blanket_impls: Considering impl for trait '{:?}' {:?}" ,
33- trait_def_id, impl_def_id
33+ trait_def_id,
34+ impl_def_id
3435 ) ;
3536 let trait_ref = self . cx . tcx . impl_trait_ref ( impl_def_id) . unwrap ( ) ;
3637 let is_param = matches ! ( trait_ref. self_ty( ) . kind( ) , ty:: Param ( _) ) ;
@@ -50,9 +51,11 @@ impl<'a, 'tcx> BlanketImplFinder<'a, 'tcx> {
5051 // FIXME(eddyb) ignoring `obligations` might cause false positives.
5152 drop ( obligations) ;
5253
53- debug ! (
54+ trace ! (
5455 "invoking predicate_may_hold: param_env={:?}, trait_ref={:?}, ty={:?}" ,
55- param_env, trait_ref, ty
56+ param_env,
57+ trait_ref,
58+ ty
5659 ) ;
5760 let predicates = self
5861 . cx
0 commit comments