@@ -30,7 +30,7 @@ impl ServerCertVerifier for SkipServerVerification {
3030 _ocsp_response : & [ u8 ] ,
3131 _now : rustls:: pki_types:: UnixTime ,
3232 ) -> Result < rustls:: client:: danger:: ServerCertVerified , rustls:: Error > {
33- tracing:: debug!( target = "quic.tls" , "Skipping server verification") ;
33+ tracing:: debug!( "skipping server verification") ;
3434 Ok ( ServerCertVerified :: assertion ( ) )
3535 }
3636
@@ -40,7 +40,7 @@ impl ServerCertVerifier for SkipServerVerification {
4040 cert : & rustls:: pki_types:: CertificateDer < ' _ > ,
4141 dss : & rustls:: DigitallySignedStruct ,
4242 ) -> Result < rustls:: client:: danger:: HandshakeSignatureValid , rustls:: Error > {
43- tracing:: debug!( target = "quic.tls" , "Verifying TLS 1.2 signature") ;
43+ tracing:: debug!( "verifying TLS 1.2 signature") ;
4444 rustls:: crypto:: verify_tls12_signature (
4545 message,
4646 cert,
@@ -55,7 +55,7 @@ impl ServerCertVerifier for SkipServerVerification {
5555 cert : & rustls:: pki_types:: CertificateDer < ' _ > ,
5656 dss : & rustls:: DigitallySignedStruct ,
5757 ) -> Result < rustls:: client:: danger:: HandshakeSignatureValid , rustls:: Error > {
58- tracing:: debug!( target = "quic.tls" , "Verifying TLS 1.3 signature") ;
58+ tracing:: debug!( "verifying TLS 1.3 signature") ;
5959 rustls:: crypto:: verify_tls13_signature (
6060 message,
6161 cert,
@@ -65,11 +65,6 @@ impl ServerCertVerifier for SkipServerVerification {
6565 }
6666
6767 fn supported_verify_schemes ( & self ) -> Vec < SignatureScheme > {
68- tracing:: debug!(
69- target = "quic.tls" ,
70- "Supported verify schemes: {:?}" ,
71- self . 0 . signature_verification_algorithms. supported_schemes( )
72- ) ;
7368 self . 0 . signature_verification_algorithms . supported_schemes ( )
7469 }
7570}
0 commit comments