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 3307b72 commit 18999b9
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 @@ -288,7 +288,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 @@ -338,7 +338,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 18999b9

Please sign in to comment.