Skip to content

Commit

Permalink
core: remove debug log statement (#6029)
Browse files Browse the repository at this point in the history
Signed-off-by: cpanato <ctadeu@gmail.com>
  • Loading branch information
cpanato committed Mar 31, 2022
1 parent 9b7f292 commit b23ab96
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions core/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ import (
"unicode"

jose "gopkg.in/square/go-jose.v2"

blog "github.com/letsencrypt/boulder/log"
)

// Package Variables Variables
Expand Down Expand Up @@ -104,8 +102,6 @@ func KeyDigest(key crypto.PublicKey) (Sha256Digest, error) {
default:
keyDER, err := x509.MarshalPKIXPublicKey(key)
if err != nil {
logger := blog.Get()
logger.Debugf("Problem marshaling public key: %s", err)
return Sha256Digest{}, err
}
return sha256.Sum256(keyDER), nil
Expand Down

0 comments on commit b23ab96

Please sign in to comment.