File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Pending
2
2
* Create a random number of delay for remote config fetch during app starts.
3
+ * Fix log spamming when Firebase Performance is disabled. (#8423 )
3
4
4
5
# Version 8.6.1
5
6
* Fix the case where the event were dropped for missing a critical field in the event.
Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ - (void)logGaugeMetric:(nonnull NSArray *)gaugeData forSessionId:(nonnull NSStri
252
252
- (void )processAndLogEvent : (firebase_perf_v1_PerfMetric)event {
253
253
BOOL tracingEnabled = self.configuration .isDataCollectionEnabled ;
254
254
if (!tracingEnabled) {
255
- FPRLogError (kFPRClientPerfNotConfigured , @" Dropping event since data collection is disabled." );
255
+ FPRLogDebug (kFPRClientPerfNotConfigured , @" Dropping event since data collection is disabled." );
256
256
return ;
257
257
}
258
258
You can’t perform that action at this time.
0 commit comments