summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2016-04-22 19:15:05 -0400
committerKeith Packard <keithp@keithp.com>2016-04-22 19:15:05 -0400
commita5373e2f9d2f1af211aa98029d448aeb518b45ce (patch)
treeb32ddc58c09e435a21db227afb0121062eaae135
parent6bca0ed8183b85e5825eb0f4093dcd749592faf3 (diff)
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 <keithp@keithp.com>
-rw-r--r--altoslib/AltosLaunchSites.java1
1 files changed, 1 insertions, 0 deletions
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();
}