From 11c8f8cbca0fc3feed0469346d682225f9301251 Mon Sep 17 00:00:00 2001 From: Miguel Angel Ajo Date: Fri, 5 Sep 2014 18:05:34 +0200 Subject: [PATCH] Fixes formatting for debug output in neutron/agent/l3_agent.py The %s format type was missing. Change-Id: I4efba513f7b0a6e4a21908bf0b05407e74b524c7 Closes-bug: #1366105 --- neutron/agent/l3_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/agent/l3_agent.py b/neutron/agent/l3_agent.py index f632996d2..9ced91586 100644 --- a/neutron/agent/l3_agent.py +++ b/neutron/agent/l3_agent.py @@ -1242,7 +1242,7 @@ class L3NATAgent(firewall_l3_agent.FWaaSL3AgentRpcCallback, manager.Manager): ns_name = self.get_snat_ns_name(ri.router['id']) else: # no centralized SNAT gateway for this node/agent - LOG.debug("not hosting snat for router: %", ri.router['id']) + LOG.debug("not hosting snat for router: %s", ri.router['id']) return else: ns_name = ri.ns_name -- 2.45.2