[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 03/04: gr-zeromq: Improve error messages
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 03/04: gr-zeromq: Improve error messages |
Date: |
Sun, 13 Sep 2015 15:17:45 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch master
in repository gnuradio.
commit 8eb066865e571aae236613034c48d44240642494
Author: Johannes Schmitz <address@hidden>
Date: Fri Sep 11 16:30:16 2015 +0200
gr-zeromq: Improve error messages
---
gr-zeromq/python/zeromq/rpc_manager.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gr-zeromq/python/zeromq/rpc_manager.py
b/gr-zeromq/python/zeromq/rpc_manager.py
index ac8ebfa..2dce997 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