summaryrefslogtreecommitdiff
path: root/gr-zeromq
diff options
context:
space:
mode:
authorJohannes Schmitz <schmitz@ti.rwth-aachen.de>2015-09-11 16:30:16 +0200
committerJohannes Schmitz <schmitz@ti.rwth-aachen.de>2015-09-11 16:30:16 +0200
commit8eb066865e571aae236613034c48d44240642494 (patch)
tree5ff4488f78609a5a8a069bb7b8e554458f583a68 /gr-zeromq
parent6ea8c686549a8aa683456e9817c1aeb33d40a0c9 (diff)
gr-zeromq: Improve error messages
Diffstat (limited to 'gr-zeromq')
-rw-r--r--gr-zeromq/python/zeromq/rpc_manager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-zeromq/python/zeromq/rpc_manager.py b/gr-zeromq/python/zeromq/rpc_manager.py
index ac8ebfa7cf..2dce997bd4 100644
--- a/gr-zeromq/python/zeromq/rpc_manager.py
+++ b/gr-zeromq/python/zeromq/rpc_manager.py
@@ -54,7 +54,7 @@ class rpc_manager():
self.interfaces[id_str] = callback_func
print "[RPC] added reply interface:", id_str
else:
- print "ERROR: duplicate id_str"
+ print "[RPC] ERROR: duplicate id_str:", id_str
def watcher(self):
self.keep_running = True
@@ -97,5 +97,5 @@ class rpc_manager():
else:
return(callback_func())
else:
- print "[RPC] ERROR: id_str not found"
+ print "[RPC] ERROR: id_str not found:", id_str
return None