diff --git a/neutron/common/config.py b/neutron/common/config.py index 3bad679aeac..40d289f81ff 100644 --- a/neutron/common/config.py +++ b/neutron/common/config.py @@ -43,7 +43,6 @@ EXTRA_LOG_LEVEL_DEFAULTS = [ 'OfctlService=INFO', 'os_ken.base.app_manager=INFO', 'os_ken.controller.controller=INFO', - 'ovsdbapp.backend.ovs_idl.vlog=INFO' ] # Register the configuration options diff --git a/neutron/tests/fullstack/resources/config.py b/neutron/tests/fullstack/resources/config.py index 3aa45350b0f..faf5bdc9e87 100644 --- a/neutron/tests/fullstack/resources/config.py +++ b/neutron/tests/fullstack/resources/config.py @@ -202,6 +202,7 @@ class OVSConfigFixture(ConfigFixture): 'integration_bridge': self._generate_integration_bridge(), 'bridge_mappings': '%s:%s' % (PHYSICAL_NETWORK_NAME, ext_dev), 'of_inactivity_probe': '0', + 'ovsdb_debug': 'True', }, 'securitygroup': { 'firewall_driver': host_desc.firewall_driver, diff --git a/neutron/tests/functional/base.py b/neutron/tests/functional/base.py index 409ba37fe29..d6e7dfeb91a 100644 --- a/neutron/tests/functional/base.py +++ b/neutron/tests/functional/base.py @@ -92,7 +92,9 @@ class BaseSudoTestCase(BaseLoggingTestCase): def _override_default_config(): # NOTE(ralonsoh): once https://review.opendev.org/#/c/641681/ is # merged, we should increase the default value of those new parameters. - ovs_agent_opts = [('ovsdb_timeout', 30, 'OVS')] + ovs_agent_opts = [('ovsdb_timeout', 30, 'OVS'), + ('ovsdb_debug', True, 'OVS'), + ] ovs_agent_decorator = config_decorator( ovs_conf.register_ovs_agent_opts, ovs_agent_opts) mock.patch.object(ovs_conf, 'register_ovs_agent_opts',