forked from organicmaps/organicmaps-tmp
[android][billing] log crashlytics exception when required parameter is not found
This commit is contained in:
parent
fa7ae2e4ae
commit
acce74daca
1 changed files with 2 additions and 1 deletions
|
@ -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 "";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue