From a7049809d14c9cdc18b3b4bcb437e2a94b849082 Mon Sep 17 00:00:00 2001 From: Stephen Ma Date: Sun, 2 Mar 2014 01:57:48 +0000 Subject: [PATCH] Log configuration values for OVS agent When other agents start up, they log the configuration values to their logs. This patch adds the same feature to the Openvswitch agent. Change-Id: I00bc82a3dafbd214a2ddbdf525dd4cc327838af9 Closes-bug: #1285962 --- neutron/plugins/openvswitch/agent/ovs_neutron_agent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/neutron/plugins/openvswitch/agent/ovs_neutron_agent.py b/neutron/plugins/openvswitch/agent/ovs_neutron_agent.py index d1fe5f96a..8c6c10186 100644 --- a/neutron/plugins/openvswitch/agent/ovs_neutron_agent.py +++ b/neutron/plugins/openvswitch/agent/ovs_neutron_agent.py @@ -1333,6 +1333,7 @@ def main(): cfg.CONF.register_opts(ip_lib.OPTS) cfg.CONF(project='neutron') logging_config.setup_logging(cfg.CONF) + q_utils.log_opt_values(LOG) legacy.modernize_quantum_config(cfg.CONF) try: -- 2.45.2