altosui: Remove some debug printfs
[fw/altos] / altoslib / AltosIdleMonitor.java
index c816c202cc44533463a7763fb943fe9219e938fe..d9d71143a0f5f4fea10ea535e00498fcc5e2fdd6 100644 (file)
@@ -91,14 +91,11 @@ public class AltosIdleMonitor extends Thread {
        }
 
        public void abort() throws InterruptedException {
-               System.out.printf("Attempting to abort monitor thread\n");
                while (isAlive()) {
-                       System.out.printf("Interrupting\n");
                        interrupt();
                        link.abort_reply();
                        Thread.sleep(100);
                }
-               System.out.printf("Appears to be dead now\n");
                join();
        }