aboutsummaryrefslogtreecommitdiff
path: root/src/IvyClient.java
diff options
context:
space:
mode:
authorjestin2003-01-07 17:13:13 +0000
committerjestin2003-01-07 17:13:13 +0000
commit95d8c5dcb9b85b57cd9516c52690db5679d6fc78 (patch)
tree842091f2f364686c8f9960380df799714f2d015f /src/IvyClient.java
parent603599544c1720e796dc622c98e5ca0fd22b8e17 (diff)
downloadivy-java-95d8c5dcb9b85b57cd9516c52690db5679d6fc78.zip
ivy-java-95d8c5dcb9b85b57cd9516c52690db5679d6fc78.tar.gz
ivy-java-95d8c5dcb9b85b57cd9516c52690db5679d6fc78.tar.bz2
ivy-java-95d8c5dcb9b85b57cd9516c52690db5679d6fc78.tar.xz
Chasse aux bugs
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());