You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NSLog(@"Failed to sync email from selectPlacement to user: %@", error);
238
+
MPILogVerbose(@"Failed to sync email from selectPlacement to user: %@", error);
237
239
completion(user);
238
240
} else {
239
-
NSLog(@"Updated user identity based off selectPlacement's attributes: %@", apiResult.user.identities);
241
+
MPILogVerbose(@"Updated user identity based off selectPlacement's attributes: %@", apiResult.user.identities);
240
242
completion(apiResult.user);
241
243
}
242
244
}];
243
245
244
246
// Warn the customer if we had to identify and therefore delay their Rokt placement.
245
247
if (shouldIdentifyFromEmail) {
246
-
NSLog(@"The existing email on the user (%@) does not match the email passed in to `selectPlacements:` (%@). Please remember to sync the email identity to mParticle as soon as you receive it. We will now identify the user before continuing to `selectPlacements:`", user.identities[@(MPIdentityEmail)], email);
248
+
MPILogVerbose(@"The existing email on the user (%@) does not match the email passed in to `selectPlacements:` (%@). Please remember to sync the email identity to mParticle as soon as you receive it. We will now identify the user before continuing to `selectPlacements:`", user.identities[@(MPIdentityEmail)], email);
247
249
} elseif (shouldIdentifyFromHash) {
248
-
NSLog(@"The existing hashed email on the user (%@) does not match the email passed in to `selectPlacements:` (%@). Please remember to sync the email identity to mParticle as soon as you receive it. We will now identify the user before continuing to `selectPlacements:`", user.identities[hashedEmailIdentity], hashedEmail);
250
+
MPILogVerbose(@"The existing hashed email on the user (%@) does not match the email passed in to `selectPlacements:` (%@). Please remember to sync the email identity to mParticle as soon as you receive it. We will now identify the user before continuing to `selectPlacements:`", user.identities[hashedEmailIdentity], hashedEmail);
0 commit comments