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
This commit is contained in:
Jens Rosenboom 2016-04-12 14:06:00 +02:00
parent c4448bd70c
commit d064aeda5d

View File

@ -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: