Skip to content

Commit 0c04300

Browse files
logging expiry date
1 parent ebfa4a6 commit 0c04300

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/uid2/core/vertx/CoreVerticle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ private void handleAttestAsync(RoutingContext rc) {
353353
return;
354354
}
355355

356-
logger.info("attestation successful for SiteId: {}, Operator name: {}, protocol: {}", operator.getSiteId(), operator.getName(), protocol);
356+
logger.info("attestation successful for SiteId: {}, Operator name: {}, protocol: {}, JWT token expiry: {}", operator.getSiteId(), operator.getName(), protocol, encryptedAttestationToken.getExpiresAt().getEpochSecond());
357357
Success(rc, responseObj);
358358
});
359359
} catch (AttestationService.NotFound e) {

0 commit comments

Comments
 (0)