Fix ml2 stack trace when logging.

Change-Id: I8bbf6edd3e526483e7f04e3eeeea571a660235fa
This commit is contained in:
Bob Kukura 2013-05-29 18:18:41 -04:00
parent 7f37486cf3
commit b345dbb867

View File

@ -42,7 +42,10 @@ def add_network_segment(session, network_id, segment):
)
session.add(record)
LOG.info(_("Added segment %(id)s of type %(network_type)s for network"
" %(network_id)s"), record)
" %(network_id)s"),
{'id': record.id,
'network_type': record.network_type,
'network_id': record.network_id})
def get_network_segments(session, network_id):