diff options
author | Keith Packard <keithp@keithp.com> | 2012-10-16 17:14:05 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-10-16 17:14:05 -0700 |
commit | b8d8b23ca5e6c2d3a19f8aeda2764b43d25eb9d6 (patch) | |
tree | ea134b3e99eeb299fd561f290d37b796d3fec702 /altosui | |
parent | ef9cb19d8b210e02eaa1c657833c1bd5fc619ad8 (diff) |
altosui: Print exception stack trace when tracking flights
More useful in fixing the problem
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui')
-rw-r--r-- | altosui/AltosFlightUI.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/altosui/AltosFlightUI.java b/altosui/AltosFlightUI.java index 533b1951..43df705e 100644 --- a/altosui/AltosFlightUI.java +++ b/altosui/AltosFlightUI.java @@ -138,7 +138,8 @@ public class AltosFlightUI extends AltosFrame implements AltosFlightDisplay, Alt } } } catch (Exception e) { - System.out.print("Show exception" + e); + System.out.print("Show exception " + e + "\n"); + e.printStackTrace(); } } |