diff options
author | Keith Packard <keithp@keithp.com> | 2016-04-22 19:15:05 -0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-04-22 19:15:05 -0400 |
commit | a5373e2f9d2f1af211aa98029d448aeb518b45ce (patch) | |
tree | b32ddc58c09e435a21db227afb0121062eaae135 /altoslib | |
parent | 6bca0ed8183b85e5825eb0f4093dcd749592faf3 (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>
Diffstat (limited to 'altoslib')
-rw-r--r-- | altoslib/AltosLaunchSites.java | 1 |
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(); } |