Skip to content

Commit

Permalink
KEYCLOAK-10401 Fix log debug message in ConditionsValidator
Browse files Browse the repository at this point in the history
  • Loading branch information
vramik authored and hmlnarik committed May 30, 2019
1 parent 803e44d commit f7c8896
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ private Result validateExpiration() {
XMLGregorianCalendar updatedNotBefore = XMLTimeUtil.subtract(notBefore, clockSkewInMillis);
XMLGregorianCalendar updatedOnOrAfter = XMLTimeUtil.add(notOnOrAfter, clockSkewInMillis);

LOG.debugf("Evaluating Conditions of Assertion %s. notBefore=%s, notOnOrAfter=%s", assertionId, notBefore, notOnOrAfter);
LOG.debugf("Evaluating Conditions of Assertion %s. notBefore=%s, notOnOrAfter=%s, updatedNotBefore: %s, updatedOnOrAfter=%s, now: %s",
assertionId, notBefore, notOnOrAfter, updatedNotBefore, updatedOnOrAfter, now);
boolean valid = XMLTimeUtil.isValid(now, updatedNotBefore, updatedOnOrAfter);
if (! valid) {
LOG.infof("Assertion %s expired.", assertionId);
Expand Down

0 comments on commit f7c8896

Please sign in to comment.