From: Keith Packard Date: Fri, 22 Apr 2016 23:15:05 +0000 (-0400) Subject: altoslib: Report exceptions caught while opening launch sites URL X-Git-Tag: 1.6.3~2^2~25 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=a5373e2f9d2f1af211aa98029d448aeb518b45ce altoslib: Report exceptions caught while opening launch sites URL This just dumps them to stdout, which helps debug on Linux at least. Signed-off-by: Keith Packard --- diff --git a/altoslib/AltosLaunchSites.java b/altoslib/AltosLaunchSites.java index 43afeb37..3ebac601 100644 --- a/altoslib/AltosLaunchSites.java +++ b/altoslib/AltosLaunchSites.java @@ -65,6 +65,7 @@ public class AltosLaunchSites extends Thread { add(line); } } catch (Exception e) { + System.out.printf("file exception %s\n", e.toString()); } finally { notify_complete(); }