altosui: Remove debug printfs from AltosTelemetryReader
authorKeith Packard <keithp@keithp.com>
Fri, 10 Sep 2010 05:55:47 +0000 (22:55 -0700)
committerKeith Packard <keithp@keithp.com>
Fri, 10 Sep 2010 06:07:16 +0000 (23:07 -0700)
Signed-off-by: Keith Packard <keithp@keithp.com>
ao-tools/altosui/AltosTelemetryReader.java

index ae9682ab323ccb43a45e31959dbdec9c88fcca30..3564a0a5a7aa14acf5f98925dbef47f203f515d8 100644 (file)
@@ -52,7 +52,6 @@ public class AltosTelemetryReader extends AltosReader {
                                        break;
                                }
                                try {
-                                       System.out.printf("%s\n", line);
                                        AltosTelemetry record = new AltosTelemetry(line);
                                        if (record == null)
                                                break;
@@ -65,7 +64,6 @@ public class AltosTelemetryReader extends AltosReader {
                                                current_tick = tick;
                                                record.tick = current_tick;
                                        }
-                                       System.out.printf("\tRSSI %d tick %d\n", record.rssi, record.tick);
                                        if (!saw_boost && record.state >= Altos.ao_flight_boost)
                                        {
                                                saw_boost = true;