Another instance of overlogging

This commit is contained in:
Peter Eckersley 2016-12-23 00:42:17 -08:00
parent 2fdbb8430a
commit c5bda903f2

View file

@ -62,7 +62,6 @@ class RevocationChecker(object):
output, err = util.run_script(cmd, log=logging.debug)
except errors.SubprocessError as e:
logger.info("OCSP check failed for %s (are we offline?)", cert_path)
logger.debug("Command was:\n%s\nError was:\n%s", " ".join(cmd), e)
return False
return _translate_ocsp_query(cert_path, output, err)