Skip to content

Commit

Permalink
enhancement: better logs for ACME
Browse files Browse the repository at this point in the history
  • Loading branch information
goenning committed May 12, 2022
1 parent a182241 commit d107cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/pkg/web/ssl.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func (m *CertificateManager) GetCertificate(hello *tls.ClientHelloInfo) (*tls.Ce
if errors.Cause(err) == errInvalidHostName {
log.Warn(m.ctx, err.Error())
} else {
log.Error(m.ctx, err)
log.Error(m.ctx, errors.Wrap(err, "failed to get certificate for %s", hello.ServerName))
}
}

Expand Down

0 comments on commit d107cbb

Please sign in to comment.