Merge "Log full config only once in conductor"

This commit is contained in:
Jenkins 2016-07-29 00:26:23 +00:00 committed by Gerrit Code Review
commit 1ecafaaa87

View File

@ -22,7 +22,6 @@ The Ironic Management Service
import sys import sys
from oslo_config import cfg from oslo_config import cfg
from oslo_log import log
from oslo_service import service from oslo_service import service
from ironic.common import service as ironic_service from ironic.common import service as ironic_service
@ -38,10 +37,6 @@ def main():
'ironic.conductor.manager', 'ironic.conductor.manager',
'ConductorManager') 'ConductorManager')
LOG = log.getLogger(__name__)
LOG.debug("Configuration:")
CONF.log_opt_values(LOG, log.DEBUG)
launcher = service.launch(CONF, mgr) launcher = service.launch(CONF, mgr)
launcher.wait() launcher.wait()