Raise level of message to info

We need to be able to search for occurences of this issue in the gate.
But, logstash doesn't index debug messages. So, they are impossible to
search for. Hence, raising the level to info which, I'm told, are
indexed.

Change-Id: Ie9116c362f3e3d5d424cb957dae23bdd222520fb
Related-Bug: #1609540
This commit is contained in:
Carl Baldwin 2016-09-15 09:47:40 -06:00
parent bcef617030
commit 268e10ef4d
1 changed files with 1 additions and 1 deletions

View File

@ -900,7 +900,7 @@ class L3_NAT_with_dvr_db_mixin(l3_db.L3_NAT_db_mixin,
for p in c_snat_ports:
if subnet_id is None or not p['fixed_ips']:
if not p['fixed_ips']:
LOG.debug("CSNAT port has no IPs: %s", p)
LOG.info(_LI("CSNAT port has no IPs: %s"), p)
self._core_plugin.delete_port(context,
p['id'],
l3_port_check=False)