diff options
Diffstat (limited to 'src/de/blinkt/openvpn/fragments')
-rw-r--r-- | src/de/blinkt/openvpn/fragments/AboutFragment.java | 9 |
1 files changed, 5 insertions, 4 deletions
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); } } |