From 268e10ef4d3106e2bc7b4e679bcba67b4c9f0e9e Mon Sep 17 00:00:00 2001 From: Carl Baldwin Date: Thu, 15 Sep 2016 09:47:40 -0600 Subject: [PATCH] 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 --- neutron/db/l3_dvr_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/db/l3_dvr_db.py b/neutron/db/l3_dvr_db.py index 2dab8d9d9d4..5df1715bb69 100644 --- a/neutron/db/l3_dvr_db.py +++ b/neutron/db/l3_dvr_db.py @@ -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)