Skip to content

Commit b23ab96

Browse files
authored
core: remove debug log statement (letsencrypt#6029)
Signed-off-by: cpanato <ctadeu@gmail.com>
1 parent 9b7f292 commit b23ab96

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

core/util.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ import (
2424
"unicode"
2525

2626
jose "gopkg.in/square/go-jose.v2"
27-
28-
blog "github.com/letsencrypt/boulder/log"
2927
)
3028

3129
// Package Variables Variables
@@ -104,8 +102,6 @@ func KeyDigest(key crypto.PublicKey) (Sha256Digest, error) {
104102
default:
105103
keyDER, err := x509.MarshalPKIXPublicKey(key)
106104
if err != nil {
107-
logger := blog.Get()
108-
logger.Debugf("Problem marshaling public key: %s", err)
109105
return Sha256Digest{}, err
110106
}
111107
return sha256.Sum256(keyDER), nil

0 commit comments

Comments
 (0)