Skip to content

Commit

Permalink
Merge pull request #20 from NationalSecurityAgency/reduce-auth-servic…
Browse files Browse the repository at this point in the history
…e-logs

Reduce authorization service log output
  • Loading branch information
ivakegg authored Sep 17, 2024
2 parents 2baa5f4 + 762e9e3 commit 27a6063
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ private X509Certificate extractClientCertificate(HttpServletRequest request) {

if (certs != null && certs.length > 0) {
if (logger.isDebugEnabled()) {
logger.debug("X.509 client authorization certificate: " + certs[0]);
logger.debug("X.509 client authorization certificate: [Subject DN: " + certs[0].getSubjectDN().getName() + ", Issuer DN: "
+ certs[0].getIssuerDN().getName() + "]");
}

return certs[0];
Expand Down

0 comments on commit 27a6063

Please sign in to comment.