Don't log errors twice

- They're already being logged down in util.run_script
This commit is contained in:
Peter Eckersley
2016-12-23 00:40:10 -08:00
parent 21287b414f
commit 2fdbb8430a
2 changed files with 1 additions and 4 deletions
-1
View File
@@ -82,7 +82,6 @@ class RevocationChecker(object):
log=logging.debug)
except errors.SubprocessError as e:
logger.info("Cannot extract OCSP URI from %s", cert_path)
logger.debug("Error was:\n%s", e)
return None, None
url = url.rstrip()