From 95d8c5dcb9b85b57cd9516c52690db5679d6fc78 Mon Sep 17 00:00:00 2001 From: jestin Date: Tue, 7 Jan 2003 17:13:13 +0000 Subject: Chasse aux bugs --- src/IvyClient.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/IvyClient.java') 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()); -- cgit v1.1