Skip to content

Commit 5bbbc3f

Browse files
committed
Add the JWT being validated to the log message
1 parent b4c3de4 commit 5bbbc3f

File tree

1 file changed

+1
-1
lines changed
  • crates/oidc-client/src/requests

1 file changed

+1
-1
lines changed

crates/oidc-client/src/requests/jose.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ pub fn verify_signed_jwt<'a>(
102102
jwt: &'a str,
103103
verification_data: JwtVerificationData<'_>,
104104
) -> Result<Jwt<'a, HashMap<String, Value>>, JwtVerificationError> {
105-
tracing::debug!("Validating JWT...");
105+
tracing::debug!(jwt, "Validating JWT...");
106106

107107
let JwtVerificationData {
108108
issuer,

0 commit comments

Comments
 (0)