mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Reduce logging level of ARI failure to info (#10335)
This is a feature people didn't have before and won't miss if it fails. We can always raise it later, but let's reduce it for now to stop people worrying about the big red warning.
This commit is contained in:
parent
b682687449
commit
31599bad83
1 changed files with 1 additions and 1 deletions
|
|
@ -360,7 +360,7 @@ class ClientV2:
|
|||
try:
|
||||
resp = self.net.get(ari_url, content_type='application/json')
|
||||
except (requests.exceptions.RequestException, messages.Error) as error:
|
||||
logger.warning("failed to fetch renewal_info URL (%s): %s", ari_url, error)
|
||||
logger.info("failed to fetch renewal_info URL (%s): %s", ari_url, error)
|
||||
return None, now + default_retry_after
|
||||
|
||||
renewal_info: messages.RenewalInfo = messages.RenewalInfo.from_json(resp.json())
|
||||
|
|
|
|||
Loading…
Reference in a new issue