From: Gary Kotton Date: Thu, 16 Aug 2012 12:27:31 +0000 (-0400) Subject: Log message missing parameter causes exception X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=8c87db4c6ec09754c2f7d34547019ca6f94acfe2;p=openstack-build%2Fneutron-build.git Log message missing parameter causes exception Fixes bug 1037545 Change-Id: Ica6109d676c23ff2e9469ca2ea5441550ff9afc2 --- diff --git a/quantum/db/dhcp_rpc_base.py b/quantum/db/dhcp_rpc_base.py index e32203d94..0969161d1 100644 --- a/quantum/db/dhcp_rpc_base.py +++ b/quantum/db/dhcp_rpc_base.py @@ -106,8 +106,8 @@ class DhcpRpcCallbackMixin(object): if retval is None: # No previous port exists, so create a new one. - LOG.debug('DHCP port %s for %s created', device_id, network_id, - host) + LOG.debug('DHCP port %s on network %s does not exist on %s', + device_id, network_id, host) network = plugin.get_network(context, network_id)