From ce6d8b0525af44ad73d5fcced9675ca454bf737d Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Thu, 15 Oct 2015 17:57:56 +0200 Subject: [PATCH] Lower the log level for the message about concurrent port delete There is nothing wrong or interesting in that log message that would be useful during general cloud operation. It may be useful when debugging an issue, so leaving the message, but with lowered log level. Change-Id: I6c16a829665b602da84c0d694fcc5f8ad5ed546b --- .../ml2/drivers/openvswitch/agent/ovs_neutron_agent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py b/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py index 9f744b684..b205bf1c1 100644 --- a/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py +++ b/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py @@ -817,8 +817,8 @@ class OVSNeutronAgent(sg_rpc.SecurityGroupAgentRpcCallbackMixin, # Do not bind a port if it's already bound cur_tag = tags_by_name.get(port.port_name) if cur_tag is None: - LOG.info(_LI("Port %s was deleted concurrently, skipping it"), - port.port_name) + LOG.debug("Port %s was deleted concurrently, skipping it", + port.port_name) continue if cur_tag != lvm.vlan: self.int_br.delete_flows(in_port=port.ofport) -- 2.45.2