NSX|V fix IPAM driver log message format

Change-Id: I6064e78b1b970b853b8030dab8e9ba5b2d7fefda
This commit is contained in:
Adit Sarfaty 2016-09-07 17:55:23 +03:00
parent 0bf70acc43
commit 1735b290b2

View File

@ -297,8 +297,8 @@ class NsxvIpamSubnet(ipam_base.Subnet, NsxvIpamBase):
try:
self._vcns.release_ipam_ip_to_pool(self._nsx_pool_id, address)
except vc_exc.VcnsApiException as e:
LOG.error(_LE("NSX IPAM failed to free ip %(ip)s of subnet %(id):"
" %(e)S"),
LOG.error(_LE("NSX IPAM failed to free ip %(ip)s of subnet %(id)s:"
" %(e)s"),
{'e': e.response,
'ip': address,
'id': self._subnet_id})