Revert "Centralize registration of logging options"

This reverts commit b647919666.

It appears that this causes issues with cross project testing.

Related-Bug: #1821092

Change-Id: Ic612aed0651c083ee5f0396cba07a179324d158b
This commit is contained in:
Chris Dent 2019-03-20 21:32:28 +00:00
parent 083451cd77
commit 4b35ee2cae
2 changed files with 2 additions and 4 deletions

View File

@ -14,8 +14,6 @@
# under the License.
from __future__ import absolute_import
from oslo_log import log as logging
from placement.conf import api
from placement.conf import base
from placement.conf import database
@ -23,7 +21,7 @@ from placement.conf import paths
from placement.conf import placement
# To avoid global config, we require an existing ConfigOpts to be passed
# To avoid global config, we require an existing ConfigOpts is passed
# to register_opts. Then the caller can have some assurance that the
# config they are using will maintain some independence.
def register_opts(conf):
@ -32,4 +30,3 @@ def register_opts(conf):
database.register_opts(conf)
paths.register_opts(conf)
placement.register_opts(conf)
logging.register_options(conf)

View File

@ -71,6 +71,7 @@ def _get_config_files(env=None):
def _parse_args(config, argv, default_config_files):
# register placement's config options
conf.register_opts(config)
logging.register_options(config)
if profiler:
profiler.set_defaults(config)