Skip to content

Commit

Permalink
Logging improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
seanjmullan committed Oct 6, 2023
1 parent 49aa802 commit cd923d6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ byte[] sign(Key key, SignedInfo si, XMLSignContext context)
throw new XMLSignatureException(e);
}
LOG.debug("Signature provider: {}", signature.getProvider());
LOG.debug("Signing with key: {}", key);
LOG.debug("JCA Algorithm: {}", getJCAAlgorithm());

try (SignerOutputStream outputStream = new SignerOutputStream(signature)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ byte[] sign(Key key, SignedInfo si, XMLSignContext context)
}
signature.initSign((PrivateKey)key);
LOG.debug("Signature provider: {}", signature.getProvider());
LOG.debug("Signing with key: {}", key);
LOG.debug("JCA Algorithm: {}", getJCAAlgorithm());

try (SignerOutputStream outputStream = new SignerOutputStream(signature)) {
Expand Down

0 comments on commit cd923d6

Please sign in to comment.