aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-09-15 13:01:39 -0700
committerBen Pfaff <blp@nicira.com>2011-09-23 09:10:44 -0700
commitb2edc4e7d84dd315330a9466adb755af4148dd40 (patch)
tree6d86f6e741dac72f9685233bcd47817a9f999bd3 /python
parent9e4f0157eca83b64b4c21380c5788274d48bff78 (diff)
ovs.jsonrpc: Include result in Message.__str__() output.
This was overlooked in the initial implementation. Including the result member makes logging output more useful.
Diffstat (limited to 'python')
-rw-r--r--python/ovs/jsonrpc.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/ovs/jsonrpc.py b/python/ovs/jsonrpc.py
index 7aea31b1..ecfe5f82 100644
--- a/python/ovs/jsonrpc.py
+++ b/python/ovs/jsonrpc.py
@@ -165,6 +165,8 @@ class Message(object):
s.append("method=\"%s\"" % self.method)
if self.params is not None:
s.append("params=" + ovs.json.to_string(self.params))
+ if self.result is not None:
+ s.append("result=" + ovs.json.to_string(self.result))
if self.error is not None:
s.append("error=" + ovs.json.to_string(self.error))
if self.id is not None: