From 1e710399e226b4b18ea29e20c32c1aa7d5293dd4 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Sun, 15 Dec 2013 16:42:28 +0100 Subject: Always log Exception to log --- src/de/blinkt/openvpn/fragments/AboutFragment.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/de/blinkt/openvpn/fragments') diff --git a/src/de/blinkt/openvpn/fragments/AboutFragment.java b/src/de/blinkt/openvpn/fragments/AboutFragment.java index ac7943db..61fcb581 100644 --- a/src/de/blinkt/openvpn/fragments/AboutFragment.java +++ b/src/de/blinkt/openvpn/fragments/AboutFragment.java @@ -23,6 +23,7 @@ import android.webkit.WebView; import android.widget.TextView; import com.android.vending.billing.IInAppBillingService; import de.blinkt.openvpn.R; +import de.blinkt.openvpn.core.VpnStatus; import org.json.JSONException; import org.json.JSONObject; @@ -123,7 +124,7 @@ public class AboutFragment extends Fragment implements View.OnClickListener { } } catch (RemoteException e) { - e.printStackTrace(); + VpnStatus.logException(e); } } @@ -196,7 +197,7 @@ public class AboutFragment extends Fragment implements View.OnClickListener { } } catch (JSONException e) { - e.printStackTrace(); + VpnStatus.logException("Parsing Play Store IAP",e); } } @@ -230,9 +231,9 @@ public class AboutFragment extends Fragment implements View.OnClickListener { } } catch (RemoteException e) { - e.printStackTrace(); + VpnStatus.logException(e); } catch (IntentSender.SendIntentException e) { - e.printStackTrace(); + VpnStatus.logException(e); } } -- cgit v1.2.3