Skip to content

Commit b4faa55

Browse files
authored
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
1 parent 17933c5 commit b4faa55

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

FirebaseInAppMessaging/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 2020-06-02 -- v0.20.2
2+
- [fixed] Fixed log message for in-app messaging test on device flow (#5680).
3+
14
# 2020-05-19 -- v0.20.1
25
- [fixed] Fixed an issue where clicks were counted for messages with no action URL (#5564).
36

FirebaseInAppMessaging/Sources/Runtime/FIRIAMRuntimeManager.m

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -385,18 +385,20 @@ - (void)internalStartRuntimeWithSDKSettings:(FIRIAMSDKSettings *)settings {
385385
NSString
386386
*_Nullable FISToken,
387387
NSError *_Nullable error) {
388-
// Always dump the instance
389-
// id into log on startup to
390-
// help developers to find it
391-
// for their app instance.
388+
// Always dump the
389+
// installation ID into log
390+
// on startup to help
391+
// developers to find it for
392+
// their app instance.
392393
FIRLogDebug(
393394
kFIRLoggerInAppMessaging,
394395
@"I-IAM180017",
395396
@"Starting "
396397
@"InAppMessaging "
397398
@"runtime "
398399
@"with "
399-
"Instance ID %@",
400+
"Firebase Installation "
401+
"ID %@",
400402
FID);
401403
}];
402404

0 commit comments

Comments
 (0)