TD2: Be more informative at exception catching.
[TD_SR.git] / TD2 / client / ThreadClientSend.java
index 42fe7dfd13c723a5cac6c8e09bbfe4cbf7db611c..399cfd3139f819247e3a301fe9c88a52b0ed9724 100644 (file)
@@ -12,8 +12,8 @@ public class ThreadClientSend implements Runnable {
         try {
             userInput = new BufferedReader(new InputStreamReader(System.in));
             boolean end = false;
-                       while (!end) {
-                               String line = userInput.readLine();
+            while (!end) {
+                String line = userInput.readLine();
                 if (line.equals(".")) {
                     end = true;
                 }
@@ -32,6 +32,7 @@ public class ThreadClientSend implements Runnable {
                 }
                 catch (IOException e) {
                     System.err.println("IOException: " + e);
+                    e.printStackTrace();
                 }
             }
         }