From 57990e6f5001a5e8dc63e27a3c1fec5b50159778 Mon Sep 17 00:00:00 2001 From: Ben Letham Date: Tue, 11 Feb 2020 03:38:18 -0800 Subject: [PATCH] Change backend logging from info to debug --- python/fbprophet/forecaster.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/fbprophet/forecaster.py b/python/fbprophet/forecaster.py index f38bc8d..cfec71a 100644 --- a/python/fbprophet/forecaster.py +++ b/python/fbprophet/forecaster.py @@ -149,11 +149,11 @@ class Prophet(object): logger.debug("Trying to load backend: %s", i.name) return self._load_stan_backend(i.name) except Exception as e: - logger.info("Unable to load backend %s (%s), trying the next one", i.name, e) + logger.debug("Unable to load backend %s (%s), trying the next one", i.name, e) else: self.stan_backend = StanBackendEnum.get_backend_class(stan_backend)(logger) - logger.info("Loaded stan backend: %s", self.stan_backend.get_type()) + logger.debug("Loaded stan backend: %s", self.stan_backend.get_type()) def validate_inputs(self): """Validates the inputs to Prophet."""