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 e30f30b commit a150769Copy full SHA for a150769
Crashlytics/Crashlytics/Components/FIRCLSUserLogging.m
@@ -198,7 +198,8 @@ void FIRCLSUserLoggingCompactKVEntries(FIRCLSUserLoggingKVStorage *storage) {
198
// but it's very uncommon to go down this path.
199
NSArray *keys = [finalKVs allKeys];
200
201
- FIRCLSSDKLogInfo("Truncating KV set, which is above max %d\n", maxCount);
+ FIRCLSSDKLogInfo("Truncating %d keys from KV set, which is above max %d\n",
202
+ (uint32_t)(finalKVs.count - maxCount), maxCount);
203
204
finalKVs =
205
[finalKVs dictionaryWithValuesForKeys:[keys subarrayWithRange:NSMakeRange(0, maxCount)]];
0 commit comments