[android][billing] log crashlytics exception when required parameter is not found

This commit is contained in:
Arsentiy Milchakov 2019-04-10 19:42:45 +03:00 committed by Aleksandr Zatsepin
parent fa7ae2e4ae
commit acce74daca

View file

@ -45,7 +45,8 @@ class BookmarkPaymentDataParser implements PaymentDataParser
String parameter = uri.getQueryParameter(name);
if (TextUtils.isEmpty(parameter))
{
CrashlyticsUtils.log(Log.ERROR, TAG, "'" + name + "' parameter is required! URI: " + uri);
CrashlyticsUtils.logException(
new IllegalArgumentException("'" + name + "' parameter is required! URI: " + uri));
return "";
}