Commented out all logging messages from the pick code to speed up message transfer.
[vamsas.git] / src / uk / ac / vamsas / client / picking / PickEndPoint.java
index e62c79e..ac45278 100644 (file)
@@ -37,15 +37,15 @@ class PickEndPoint extends Thread
                        in = new BufferedReader(new InputStreamReader(socket.getInputStream()));\r
                \r
                        // Start the thread to listen for incoming messages\r
-                       logger.info("CLIENT: connection successful to port "\r
-                               + socket.getPort() + " via port " + socket.getLocalPort());\r
+//                     logger.info("CLIENT: connection successful to port "\r
+//                             + socket.getPort() + " via port " + socket.getLocalPort());\r
                        start();\r
                        \r
                        return true;\r
                }\r
                catch (Exception e)\r
                {\r
-                       logger.info("CLIENT: connection failed: " + e);\r
+                       //logger.info("CLIENT: connection failed: " + e);\r
                        return false;\r
                }\r
        }\r
@@ -56,7 +56,7 @@ class PickEndPoint extends Thread
                {\r
                        String str = message.getRawMessage();\r
                        \r
-                       logger.info("CLIENT: send " + str + " to " + rPort);\r
+                       //logger.info("CLIENT: send " + str + " to " + rPort);\r
                        os.write(str);\r
                        \r
                        // We use a newline to terminate the message\r
@@ -65,7 +65,7 @@ class PickEndPoint extends Thread
                }\r
                catch (Exception e)\r
                {\r
-                       logger.info("CLIENT: failed to send");\r
+                       //logger.info("CLIENT: failed to send");\r
                        \r
                        // TODO: terminate the connection on a failed send or retry?\r
                        terminate();\r
@@ -80,7 +80,7 @@ class PickEndPoint extends Thread
                        while (true)\r
                        {\r
                                String str = in.readLine();                             \r
-                               logger.info("CLIENT: recv " + str + " from " + rPort);\r
+                               //logger.info("CLIENT: recv " + str + " from " + rPort);\r
                                \r
                                // TODO: Spawn this off into the GUI Event-Dispatch thread...\r
                                \r
@@ -96,7 +96,7 @@ class PickEndPoint extends Thread
                {\r
                        // Means the other end of the connection has (probably died) so we need\r
                        // terminate this endpoint (if this is server side)\r
-                       logger.info("CLIENT: read failed: " + e);\r
+                       //logger.info("CLIENT: read failed: " + e);\r
                                                \r
                        terminate();\r
                }\r
@@ -107,7 +107,7 @@ class PickEndPoint extends Thread
                try { socket.close(); }\r
                catch (IOException e) {}\r
                \r
-               logger.info("CLIENT: closing connection to port " + socket.getPort());\r
+               //logger.info("CLIENT: closing connection to port " + socket.getPort());\r
                manager.removeEndPoint(this);\r
        }\r
        \r
@@ -123,7 +123,7 @@ class PickEndPoint extends Thread
                }\r
                catch (Exception e)\r
                {\r
-                       logger.info("Unable to reconstruct message: " + e);\r
+                       //logger.info("Unable to reconstruct message: " + e);\r
                }\r
                \r
                return null;\r