mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8296787: Unify debug printing format of X.509 cert serial numbers
Reviewed-by: mullan, coffeys
This commit is contained in:
parent
fde5b16817
commit
c328f9589d
18 changed files with 62 additions and 46 deletions
|
@ -1929,10 +1929,10 @@ public class X509CertSelector implements CertSelector {
|
|||
}
|
||||
|
||||
if (debug != null) {
|
||||
debug.println("X509CertSelector.match(SN: "
|
||||
+ (xcert.getSerialNumber()).toString(16) + "\n Issuer: "
|
||||
+ xcert.getIssuerX500Principal() + "\n Subject: " + xcert.getSubjectX500Principal()
|
||||
+ ")");
|
||||
debug.println("X509CertSelector.match(Serial number: "
|
||||
+ Debug.toString(xcert.getSerialNumber())
|
||||
+ "\n Issuer: " + xcert.getIssuerX500Principal() + "\n Subject: "
|
||||
+ xcert.getSubjectX500Principal() + ")");
|
||||
}
|
||||
|
||||
/* match on X509Certificate */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue