[API] Fix logging line

Old style logging was causing an exception, and IP deletes to fail.

Change-Id: Ifc3b7cfed6c6140d3327d863840c79c03df8ffbd
This commit is contained in:
David Shrewsbury
2013-12-18 12:52:30 -05:00
parent a005adf9f3
commit 4fcbe4f785

View File

@@ -200,7 +200,7 @@ class GearmanClientThread(object):
}
ip_int = int(ipaddress.IPv4Address(unicode(self.lbid)))
for x in xrange(0, 5):
self.logger.info(
LOG.info(
'Attempt to delete IP {0} #{1}'
.format(self.lbid, x)
)