forked from organicmaps/organicmaps
Merge pull request #4176 from rokuz/pw-hotfix-cp
Fixed PW exception logging
This commit is contained in:
commit
c19c7660d4
1 changed files with 4 additions and 1 deletions
|
@ -129,7 +129,10 @@ public final class PushwooshHelper implements SendPushTagsCallBack
|
|||
synchronized (mSyncObject)
|
||||
{
|
||||
if (e != null)
|
||||
Log.e("Pushwoosh", e.getLocalizedMessage());
|
||||
{
|
||||
String msg = e.getLocalizedMessage();
|
||||
Log.e("Pushwoosh", msg != null ? msg : "onSentTagsError");
|
||||
}
|
||||
mTask = null;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue