We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c68e27e commit 61d2558Copy full SHA for 61d2558
cmd/bad-key-revoker/main.go
@@ -246,7 +246,7 @@ func (bkr *badKeyRevoker) invoke(ctx context.Context) (bool, error) {
246
for _, cert := range unrevokedCerts {
247
serials = append(serials, cert.Serial)
248
}
249
- bkr.logger.AuditInfo(fmt.Sprintf("revoking serials %v for key with hash %s", serials, unchecked.KeyHash))
+ bkr.logger.AuditInfo(fmt.Sprintf("revoking serials %v for key with hash %x", serials, unchecked.KeyHash))
250
251
// revoke each certificate
252
err = bkr.revokeCerts(unrevokedCerts)
0 commit comments