diff options
author | Keith Packard <keithp@keithp.com> | 2014-05-29 10:16:15 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-05-29 10:16:15 -0700 |
commit | 71715337eb532a1fbe1a753240e7417d5223489f (patch) | |
tree | 2042488d19584b89b661e48fe0dadbe555d4f174 /altosui/AltosIdleMonitorUI.java | |
parent | 13f84be8d1568a3fc2ed5eef5dcc2093c149285e (diff) |
telegps: Add info table
Move a couple of files from altosui to altosuilib, hook up the info
table after changing it to implement the AltosFlightDisplay interface
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosIdleMonitorUI.java')
-rw-r--r-- | altosui/AltosIdleMonitorUI.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/altosui/AltosIdleMonitorUI.java b/altosui/AltosIdleMonitorUI.java index 62b50568..b5652df3 100644 --- a/altosui/AltosIdleMonitorUI.java +++ b/altosui/AltosIdleMonitorUI.java @@ -234,7 +234,9 @@ public class AltosIdleMonitorUI extends AltosUIFrame implements AltosFlightDispl try { disconnect(); } catch (Exception ex) { - System.out.println(Arrays.toString(ex.getStackTrace())); + System.out.printf("Exception %s\n", ex.toString()); + for (StackTraceElement e : ex.getStackTrace()) + System.out.printf("%s\n", e.toString()); } setVisible(false); dispose(); |