NSXv: fix bad log message

The log message is missing a parameter. This is when there is an
exception with add_member_to_security_group.

Change-Id: I3415cf91ac4071e89e2b9ac70f953db07a2dcece
This commit is contained in:
Gary Kotton 2015-06-09 04:26:13 -07:00
parent eaa4ec92cc
commit 019ac88aee

View File

@ -463,8 +463,7 @@ class NsxVPluginV2(agents_db.AgentDbMixin,
{'sg_id': sg_id, 'vnic_id': vnic_id})
except Exception as e:
LOG.debug("NSX security group %(sg_id)s member add "
"failed %(vnic_id)s - attempt %(attempt)d. "
"Exception: %(exc)s",
"failed %(vnic_id)s. Exception: %(exc)s",
{'sg_id': sg_id,
'vnic_id': vnic_id,
'exc': e})