From 1076052701ae17c6d0001310889877dc5f3a0f92 Mon Sep 17 00:00:00 2001 From: Mike Thomas Date: Sat, 8 Mar 2008 01:34:42 +0000 Subject: [PATCH] Remove the temporary debug logging. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4967 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../presents/client/BlockingCommunicator.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/java/com/threerings/presents/client/BlockingCommunicator.java b/src/java/com/threerings/presents/client/BlockingCommunicator.java index 68a01f364..38e010ec3 100644 --- a/src/java/com/threerings/presents/client/BlockingCommunicator.java +++ b/src/java/com/threerings/presents/client/BlockingCommunicator.java @@ -479,29 +479,19 @@ public class BlockingCommunicator extends Communicator // somebody set up us the bomb! we've been interrupted which means that we're being // shut down, so we just report it and return from iterate() like a good monkey Log.debug("Reader thread woken up in time to die."); - // TEMP - Log.info("Blocking Communicator: Caught a ClosedByInterruptException: " + cbie); } catch (InterruptedIOException iioe) { // somebody set up us the bomb! we've been interrupted which means that we're being // shut down, so we just report it and return from iterate() like a good monkey Log.debug("Reader thread woken up in time to die."); - // TEMP - Log.info("Blocking Communicator: Caught a InterruptedIOException: " + iioe); - } catch (EOFException eofe) { - // TEMP - Log.info("Blocking Communicator: Caught an EOFException: " + eofe); - // let the communicator know that our connection was closed connectionClosed(); // and shut ourselves down shutdown(); } catch (IOException ioe) { - // TEMP - Log.info("Blocking Communicator: Caught an IOException: " + ioe); // let the communicator know that our connection failed connectionFailed(ioe); // and shut ourselves down @@ -532,10 +522,7 @@ public class BlockingCommunicator extends Communicator // Note that we're the ones in control of the interruption, and then do it to get our // reader out of waiting for the rest of a readFrame if necessary. _interrupted = true; - Log.info("BlockingCommunicator: about to call interrupt"); interrupt(); - // TEMP - Log.info("BlockingCommunicator: called interrupt"); } }