@@ -64,7 +64,7 @@ mod rustc {
64
64
impl < ' tcx > MaybeTransmutableQuery < Ty < ' tcx > , TyCtxt < ' tcx > > {
65
65
/// This method begins by converting `src` and `dst` from `Ty`s to `Tree`s,
66
66
/// then computes an answer using those trees.
67
- #[ instrument( level = "DEBUG " , skip( self ) , fields( src = ?self . src, dst = ?self . dst) ) ]
67
+ #[ instrument( level = "debug " , skip( self ) , fields( src = ?self . src, dst = ?self . dst) ) ]
68
68
pub fn answer ( self ) -> Answer < <TyCtxt < ' tcx > as QueryContext >:: Ref > {
69
69
let query_or_answer = self . map_layouts ( |src, dst, scope, & context| {
70
70
// Convert `src` and `dst` from their rustc representations, to `Tree`-based
@@ -103,7 +103,7 @@ where
103
103
/// This method begins by de-def'ing `src` and `dst`, and prunes private paths from `dst`,
104
104
/// then converts `src` and `dst` to `Nfa`s, and computes an answer using those NFAs.
105
105
#[ inline( always) ]
106
- #[ instrument( level = "DEBUG " , skip( self ) , fields( src = ?self . src, dst = ?self . dst) ) ]
106
+ #[ instrument( level = "debug " , skip( self ) , fields( src = ?self . src, dst = ?self . dst) ) ]
107
107
pub ( crate ) fn answer ( self ) -> Answer < <C as QueryContext >:: Ref > {
108
108
let assume_visibility = self . assume . visibility ;
109
109
let query_or_answer = self . map_layouts ( |src, dst, scope, context| {
@@ -152,7 +152,7 @@ where
152
152
///
153
153
/// This method converts `src` and `dst` to DFAs, then computes an answer using those DFAs.
154
154
#[ inline( always) ]
155
- #[ instrument( level = "DEBUG " , skip( self ) , fields( src = ?self . src, dst = ?self . dst) ) ]
155
+ #[ instrument( level = "debug " , skip( self ) , fields( src = ?self . src, dst = ?self . dst) ) ]
156
156
pub ( crate ) fn answer ( self ) -> Answer < <C as QueryContext >:: Ref > {
157
157
let query_or_answer = self
158
158
. map_layouts ( |src, dst, scope, context| Ok ( ( Dfa :: from_nfa ( src) , Dfa :: from_nfa ( dst) ) ) ) ;
@@ -192,7 +192,7 @@ where
192
192
}
193
193
194
194
#[ inline( always) ]
195
- #[ instrument( level = "DEBUG " , skip( self ) ) ]
195
+ #[ instrument( level = "debug " , skip( self ) ) ]
196
196
fn answer_memo (
197
197
& self ,
198
198
cache : & mut Map < ( dfa:: State , dfa:: State ) , Answer < <C as QueryContext >:: Ref > > ,
0 commit comments