1
0
Fork 0

Replace hardcoded references to LetsEncrypt in log messages

This commit is contained in:
Andreas Schildbach 2026-01-09 09:36:04 +01:00 committed by GitHub
parent 7e703742cb
commit c7487c4a69
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -921,11 +921,11 @@ func (p *Provider) renewCertificates(ctx context.Context, renewPeriod time.Durat
for _, cert := range certificates {
client, err := p.getClient()
if err != nil {
logger.Info().Err(err).Msgf("Error renewing certificate from LE : %+v", cert.Domain)
logger.Info().Err(err).Msgf("Error renewing ACME certificate: %+v", cert.Domain)
continue
}
logger.Info().Msgf("Renewing certificate from LE : %+v", cert.Domain)
logger.Info().Msgf("Renewing ACME certificate: %+v", cert.Domain)
res := certificate.Resource{
Domain: cert.Domain.Main,
@ -942,7 +942,7 @@ func (p *Provider) renewCertificates(ctx context.Context, renewPeriod time.Durat
renewedCert, err := client.Certificate.RenewWithOptions(res, opts)
if err != nil {
logger.Error().Err(err).Msgf("Error renewing certificate from LE: %v", cert.Domain)
logger.Error().Err(err).Msgf("Error renewing ACME certificate: %v", cert.Domain)
continue
}