We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bac22b commit f0884c5Copy full SHA for f0884c5
AndroidSDKFcm/src/main/java/com/leanplum/LeanplumFcmProvider.java
@@ -56,7 +56,8 @@ public void getCurrentRegistrationIdAndUpdateBackend() {
56
@Override
57
public void onComplete(@NonNull Task<InstanceIdResult> task) {
58
if (!task.isSuccessful()) {
59
- Log.e("getInstanceId failed");
+ Exception exc = task.getException();
60
+ Log.e("getInstanceId failed:\n" + Log.getStackTraceString(exc));
61
return;
62
}
63
// Get new Instance ID token
0 commit comments