From c5bda903f26a76f251bf203f80c1cf2f71ad8807 Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Fri, 23 Dec 2016 00:42:17 -0800 Subject: [PATCH] Another instance of overlogging --- certbot/ocsp.py | 1 - 1 file changed, 1 deletion(-) diff --git a/certbot/ocsp.py b/certbot/ocsp.py index 33a3619dc..a4f8ebb5f 100644 --- a/certbot/ocsp.py +++ b/certbot/ocsp.py @@ -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)