Change ocsp check error to warning since it's non-fatal

This commit is contained in:
Erica Portnoy 2021-04-22 15:13:05 -07:00
parent 9a610ee1c8
commit 6c1447bb99

View file

@ -911,7 +911,7 @@ class RenewableCert(interfaces.RenewableCert):
return ocsp.RevocationChecker().ocsp_revoked_by_paths(cert_path,
chain_path)
except Exception as e: # pylint: disable=broad-except
logger.error(
logger.warning(
"An error occurred determining the OCSP status of %s.",
cert_path)
logger.debug(str(e))