Make event debug log more useful

self.events isn't useful info since the given RowEvent will always
have the same self.events. More useful is the *actual* event that
was matched, so if we are listening for create/update we can see
that we matched on update, etc.

Change-Id: I28e7421238660bc0b986b42d0a88e5c6b6d9a75a
This commit is contained in:
Terry Wilson 2019-02-28 09:58:39 -06:00
parent ab42b08a04
commit a0f7d79a56
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class RowEvent(ovsdb_event.RowEvent): # pylint: disable=abstract-method
if not self.match_fn(event, row, old):
return False
LOG.debug("%s : Matched %s, %s, %s %s", self.event_name, self.table,
self.events, self.conditions, self.old_conditions)
event, self.conditions, self.old_conditions)
return True