diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-12-15 16:42:28 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-12-15 16:42:28 +0100 |
commit | 1e710399e226b4b18ea29e20c32c1aa7d5293dd4 (patch) | |
tree | 09788ce775856dfff2315efa4990fc2788b5af9f /src/de/blinkt/openvpn/LaunchVPN.java | |
parent | a51eda3d7de8387316814cadddc1f5fde3c8b3aa (diff) |
Always log Exception to log
Diffstat (limited to 'src/de/blinkt/openvpn/LaunchVPN.java')
-rw-r--r-- | src/de/blinkt/openvpn/LaunchVPN.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/de/blinkt/openvpn/LaunchVPN.java b/src/de/blinkt/openvpn/LaunchVPN.java index 10dd3e99..20683805 100644 --- a/src/de/blinkt/openvpn/LaunchVPN.java +++ b/src/de/blinkt/openvpn/LaunchVPN.java @@ -273,9 +273,10 @@ public class LaunchVPN extends Activity { if(ret ==0) mCmfixed=true; } catch (InterruptedException e) { - e.printStackTrace(); + VpnStatus.logException("SU command", e); + } catch (IOException e) { - e.printStackTrace(); + VpnStatus.logException("SU command", e); } } |