Fix logging message on VIP update

Logging was broken in updata VIP operation

Change-Id: Iec45cd01c9e810956ddd7c16c1e26517da4ce77a
This commit is contained in:
Kobi Samoray 2015-09-06 11:42:39 +03:00
parent 5ae9a333ef
commit d027291ebc
1 changed files with 1 additions and 1 deletions

View File

@ -546,7 +546,7 @@ class EdgeLbDriver(object):
self.vcns.delete_app_profile(edge_id, app_profile_id)
def update_vip(self, context, old_vip, vip, pool_mapping, vip_mapping):
LOG.debug('Updating VIP %s to %s', (old_vip, vip))
LOG.debug('Updating VIP %s to %s', old_vip, vip)
edge_id = vip_mapping['edge_id']
edge_vip_id = vip_mapping['edge_vse_id']