altoslib: Remove ADXL375 debug noise
authorKeith Packard <keithp@keithp.com>
Fri, 21 Feb 2020 06:35:54 +0000 (22:35 -0800)
committerKeith Packard <keithp@keithp.com>
Fri, 21 Feb 2020 06:35:54 +0000 (22:35 -0800)
Signed-off-by: Keith Packard <keithp@keithp.com>
altoslib/AltosAdxl375.java

index 2129ed6eca825eec988addb7e75f9a06a56926b0..8ad193b79109aa0a04e7de683ccc6cf729e8dd06 100644 (file)
@@ -31,13 +31,11 @@ public class AltosAdxl375 implements Cloneable {
 
        public boolean parse_line(String line) throws NumberFormatException {
                if (line.startsWith("ADXL375 value")) {
-                       System.out.printf("adxl parse line %s\n", line);
                        String[] items = line.split("\\s+");
                        if (axis == AltosLib.MISSING)
                                throw new NumberFormatException("No ADXL375 axis specified");
                        if (items.length >= 3) {
                                accel = Integer.parseInt(items[2 + axis]);
-                               System.out.printf("accel %d\n", accel);
                                return true;
                        }
                }