[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 d47bf8aa95
commit dd02b5ef4e
1 changed files with 1 additions and 1 deletions

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)
)