updated config service logging to debug

This commit is contained in:
Blake Harnden 2020-01-24 16:01:44 -08:00
parent a85cb92196
commit 05a60f684e
2 changed files with 3 additions and 11 deletions

View file

@ -43,10 +43,10 @@ class ConfigServiceManager:
subdirs.append(path)
service_errors = []
for subdir in subdirs:
logging.info("loading config services from: %s", subdir)
logging.debug("loading config services from: %s", subdir)
services = utils.load_classes(str(subdir), ConfigService)
for service in services:
logging.info("found service: %s", service)
logging.debug("found service: %s", service)
try:
self.add(service)
except CoreError as e: