aboutsummaryrefslogtreecommitdiff
path: root/src/IvyClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/IvyClient.java')
-rwxr-xr-xsrc/IvyClient.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/IvyClient.java b/src/IvyClient.java
index 8cd330e..8aad199 100755
--- a/src/IvyClient.java
+++ b/src/IvyClient.java
@@ -11,6 +11,7 @@
*
* CHANGELOG:
* 1.2.3:
+ * - silently stops on InterruptedIOException.
* - direct Messages
* - deals with early stops during readline
* 1.2.2:
@@ -216,7 +217,7 @@ public class IvyClient implements Runnable {
} catch (IvyException ie) {
ie.printStackTrace();
} catch (InterruptedIOException ioe) {
- System.out.println("I have been interrupted. I'm about to leave my thread loop");
+ traceDebug("I have been interrupted. I'm about to leave my thread loop");
if (thisThread!=clientThread) break;
} catch (IOException e) {
traceDebug("abnormally Disconnected from "+ socket.getInetAddress().getHostName()+":"+socket.getPort());