]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Lower the log level for the message about concurrent port delete
authorIhar Hrachyshka <ihrachys@redhat.com>
Thu, 15 Oct 2015 15:57:56 +0000 (17:57 +0200)
committerIhar Hrachyshka <ihrachys@redhat.com>
Thu, 15 Oct 2015 15:57:56 +0000 (17:57 +0200)
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

neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py

index 9f744b68400b67147f1fd5eb5caf356e9ba64354..b205bf1c19d1c69c08335f5b6a14079e24ec8dcd 100644 (file)
@@ -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)