diff options
Diffstat (limited to 'tests/TestApi.java')
-rw-r--r-- | tests/TestApi.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/TestApi.java b/tests/TestApi.java index 00c2f29..f6e8ecf 100644 --- a/tests/TestApi.java +++ b/tests/TestApi.java @@ -28,7 +28,9 @@ class TestApi implements IvyMessageListener, IvyApplicationListener { bus.sendToSelf(true); bus.bindMsg("^go$",new Self(domain)); System.out.println("sending go ..."); - try { bus.sendMsg("go"); } catch (IvyException ie) { } + try { bus.sendMsg("go"); } catch (IvyException ie) { + ie.printStackTrace(); + } System.out.println("go sent"); } |