[java-idp-oidc] branch master updated: Log exception information in failed token revocation path
Rod Widdowson
rdw at steadingsoftware.com
Tue Jan 21 11:29:02 EST 2020
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch master
in repository java-idp-oidc.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-oidc.git;a=commit;h=f4cf29c9c78044e66a497fc58b78a62ed718cab4
The following commit(s) were added to refs/heads/master by this push:
new f4cf29c Log exception information in failed token revocation path
f4cf29c is described below
commit f4cf29c9c78044e66a497fc58b78a62ed718cab4
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Tue Jan 21 16:28:43 2020 +0000
Log exception information in failed token revocation path
---
.../java/org/geant/idpextension/oauth2/profile/impl/RevokeToken.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-oidc-extension-impl/src/main/java/org/geant/idpextension/oauth2/profile/impl/RevokeToken.java b/idp-oidc-extension-impl/src/main/java/org/geant/idpextension/oauth2/profile/impl/RevokeToken.java
index 9cce6e4..621c616 100644
--- a/idp-oidc-extension-impl/src/main/java/org/geant/idpextension/oauth2/profile/impl/RevokeToken.java
+++ b/idp-oidc-extension-impl/src/main/java/org/geant/idpextension/oauth2/profile/impl/RevokeToken.java
@@ -92,7 +92,7 @@ public class RevokeToken extends AbstractOIDCRequestAction<TokenRevocationReques
tokenClaimsSet = AccessTokenClaimsSet.parse(getRequest().getToken().getValue(), dataSealer);
log.debug("{} access token unwrapped {}", getLogPrefix(), tokenClaimsSet.serialize());
} catch (final DataSealerException | ParseException e) {
- log.debug("{} token to revoke is not valid access token", getLogPrefix());
+ log.debug("{} token to revoke is not valid access token", getLogPrefix(), e);
}
if (tokenClaimsSet == null) {
try {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list