From: Ihar Hrachyshka Date: Thu, 15 Oct 2015 15:57:56 +0000 (+0200) Subject: Lower the log level for the message about concurrent port delete X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=ce6d8b0525af44ad73d5fcced9675ca454bf737d;p=openstack-build%2Fneutron-build.git 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 --- 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)