Replace hardcoded references to LetsEncrypt in log messages
This commit is contained in:
parent
7e703742cb
commit
c7487c4a69
1 changed files with 3 additions and 3 deletions
|
|
@ -921,11 +921,11 @@ func (p *Provider) renewCertificates(ctx context.Context, renewPeriod time.Durat
|
||||||
for _, cert := range certificates {
|
for _, cert := range certificates {
|
||||||
client, err := p.getClient()
|
client, err := p.getClient()
|
||||||
if err != nil {
|
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
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.Info().Msgf("Renewing certificate from LE : %+v", cert.Domain)
|
logger.Info().Msgf("Renewing ACME certificate: %+v", cert.Domain)
|
||||||
|
|
||||||
res := certificate.Resource{
|
res := certificate.Resource{
|
||||||
Domain: cert.Domain.Main,
|
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)
|
renewedCert, err := client.Certificate.RenewWithOptions(res, opts)
|
||||||
if err != nil {
|
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
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue