From: Keith Packard Date: Wed, 22 Jan 2014 05:37:18 +0000 (-0800) Subject: altosuilib: Remove some spurious debug printfs X-Git-Tag: 1.3.1~6 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=f118e33416e45ea9a2b5ede4157bd8b58ddb6ebb;hp=677fcafd3816b6d8d86b2dc41b840d97b5ccbf07 altosuilib: Remove some spurious debug printfs Signed-off-by: Keith Packard --- diff --git a/altosuilib/AltosUILib.java b/altosuilib/AltosUILib.java index 18c4c3d9..76782e2e 100644 --- a/altosuilib/AltosUILib.java +++ b/altosuilib/AltosUILib.java @@ -87,11 +87,9 @@ public class AltosUILib extends AltosLib { if (!initialized) { for (String name : library_names) { try { - System.out.printf ("Trying library %s\n", name); System.loadLibrary(name); libaltos.altos_init(); loaded_library = true; - System.out.printf ("Using library %s\n", name); break; } catch (UnsatisfiedLinkError e) { System.out.printf("Link error %s\n", e.getMessage());