updated config service logging to debug
This commit is contained in:
parent
a85cb92196
commit
05a60f684e
2 changed files with 3 additions and 11 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue