]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fixes formatting for debug output in neutron/agent/l3_agent.py
authorMiguel Angel Ajo <mangelajo@redhat.com>
Fri, 5 Sep 2014 16:05:34 +0000 (18:05 +0200)
committerMiguel Angel Ajo <mangelajo@redhat.com>
Fri, 5 Sep 2014 16:09:24 +0000 (18:09 +0200)
The %s format type was missing.

Change-Id: I4efba513f7b0a6e4a21908bf0b05407e74b524c7
Closes-bug: #1366105

neutron/agent/l3_agent.py

index f632996d23208f87f8447ca61fcdd21071fdfdc7..9ced9158607ae2e849020fcca7d0f863991e200e 100644 (file)
@@ -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