From d064aeda5dc748d038648cfb7735709541077ad9 Mon Sep 17 00:00:00 2001
From: Jens Rosenboom <j.rosenboom@x-ion.de>
Date: Tue, 12 Apr 2016 14:06:00 +0200
Subject: [PATCH] Make tunnel_sync logging less verbose

The current status makes an info level message being logged
unconditionally every 2 seconds.

In order to clean up the logs in a default installation, use only debug
level for this message.

Change-Id: I270fbf2f0ba0af7fbdc224135dd7376e5c050dbc
---
 .../plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 f21c0ac741f..bce4fd7f4b9 100644
--- a/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py
+++ b/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py
@@ -1668,7 +1668,7 @@ class OVSNeutronAgent(sg_rpc.SecurityGroupAgentRpcCallbackMixin,
             return
 
     def tunnel_sync(self):
-        LOG.info(_LI("Configuring tunnel endpoints to other OVS agents"))
+        LOG.debug("Configuring tunnel endpoints to other OVS agents")
 
         try:
             for tunnel_type in self.tunnel_types: