From f7116a738806e6dab3198b53535b56dd14a8933a Mon Sep 17 00:00:00 2001 From: yan Date: Fri, 8 May 2015 12:36:32 -0700 Subject: [PATCH] Reduce logging severity for unparseable config files --- letsencrypt/client/plugins/nginx/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/client/plugins/nginx/parser.py b/letsencrypt/client/plugins/nginx/parser.py index 8de705dde..16480d75f 100644 --- a/letsencrypt/client/plugins/nginx/parser.py +++ b/letsencrypt/client/plugins/nginx/parser.py @@ -166,7 +166,7 @@ class NginxParser(object): except IOError: logging.warn("Could not open file: %s", item) except pyparsing.ParseException: - logging.warn("Could not parse file: %s", item) + logging.debug("Could not parse file: %s", item) return trees def _set_locations(self, ssl_options):