Change "Attempting to parse" warning to info. (#5557)

* Change "Attempting to parse" warning to info.

This message shows up on every renewal run when the config was updated
by a newer version of Certbot than the one being run. For instance, if a
user has the certbot packages installed from PPA (currently 0.18.2), but
runs certbot-auto once to try out the latest version (0.21.1), they will
start getting this message via email every 12 hours.
This commit is contained in:
Jacob Hoffman-Andrews
2018-02-12 14:55:41 -08:00
committed by Brad Warren
parent abc4a27613
commit 789be8f9bc
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -417,7 +417,7 @@ class RenewableCert(object):
conf_version = self.configuration.get("version")
if (conf_version is not None and
util.get_strict_version(conf_version) > CURRENT_VERSION):
logger.warning(
logger.info(
"Attempting to parse the version %s renewal configuration "
"file found at %s with version %s of Certbot. This might not "
"work.", conf_version, config_filename, certbot.__version__)