mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-07-29 20:14:08 +00:00
Change backend logging from info to debug
This commit is contained in:
parent
9cce1527e9
commit
57990e6f50
1 changed files with 2 additions and 2 deletions
|
|
@ -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."""
|
||||
|
|
|
|||
Loading…
Reference in a new issue