Bläddra i källkod

Change log message to reference FID instead of IID (#5680)

* Change log message to reference FID instead of IID

* Add CHANGELOG entry

* Slight changelog tweak
christibbs 5 år sedan
förälder
incheckning
b4faa554c3

+ 3 - 0
FirebaseInAppMessaging/CHANGELOG.md

@@ -1,3 +1,6 @@
+# 2020-06-02 -- v0.20.2
+- [fixed] Fixed log message for in-app messaging test on device flow (#5680).
+
 # 2020-05-19 -- v0.20.1
 - [fixed] Fixed an issue where clicks were counted for messages with no action URL (#5564).
 

+ 7 - 5
FirebaseInAppMessaging/Sources/Runtime/FIRIAMRuntimeManager.m

@@ -385,10 +385,11 @@ static NSString *const kFirebaseInAppMessagingAutoDataCollectionKey =
                                                                          NSString
                                                                              *_Nullable FISToken,
                                                                          NSError *_Nullable error) {
-                                                                       // Always dump the instance
-                                                                       // id into log on startup to
-                                                                       // help developers to find it
-                                                                       // for their app instance.
+                                                                       // Always dump the
+                                                                       // installation ID into log
+                                                                       // on startup to help
+                                                                       // developers to find it for
+                                                                       // their app instance.
                                                                        FIRLogDebug(
                                                                            kFIRLoggerInAppMessaging,
                                                                            @"I-IAM180017",
@@ -396,7 +397,8 @@ static NSString *const kFirebaseInAppMessagingAutoDataCollectionKey =
                                                                            @"InAppMessaging "
                                                                            @"runtime "
                                                                            @"with "
-                                                                            "Instance ID %@",
+                                                                            "Firebase Installation "
+                                                                            "ID %@",
                                                                            FID);
                                                                      }];