From 6a1c98461b46c407b3513cb6968b02e814ed2f33 Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Tue, 3 Sep 2019 18:27:18 -0500 Subject: [PATCH] Add a __str__ method to idl.Row It's sometimes handy to log an entire Row object, so this just adds a string representation of the object as: Tablename(col1=val1, col2=val2, ..., coln=valn) Signed-off-by: Terry Wilson Signed-off-by: Ben Pfaff --- python/ovs/db/idl.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/python/ovs/db/idl.py b/python/ovs/db/idl.py index 84af978a49b..d1d91552b1b 100644 --- a/python/ovs/db/idl.py +++ b/python/ovs/db/idl.py @@ -997,6 +997,12 @@ def __eq__(self, other): def __hash__(self): return int(self.__dict__['uuid']) + def __str__(self): + return "{table}({data})".format( + table=self._table.name, + data=", ".join("{col}={val}".format(col=c, val=getattr(self, c)) + for c in sorted(self._table.columns))) + def __getattr__(self, column_name): assert self._changes is not None assert self._mutations is not None