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
Firebase Performance spams in log when disabled. Disabled module via isInstrumentationEnabled=false and isDataCollectionEnabled=false produces spam in log
[Firebase/Performance][I-PRF100013] Dropping event since data collection is disabled.
Suggested workaround in #4238 (set -FIRDebugEnabled) in not a fix, its silently enables Performance module.
My suggestion is change
FPRLogError(kFPRClientPerfNotConfigured, @"Dropping event since data collection is disabled.");
to
FPRLogDebug(kFPRClientPerfNotConfigured, @"Dropping event since data collection is disabled.");
Or something like that, because disabled traces is not an error at all.
The text was updated successfully, but these errors were encountered:
Step 1: Describe your environment
CocoaPods
Step 2: Describe the problem
Reopening problem #4238:
Firebase Performance spams in log when disabled. Disabled module via
isInstrumentationEnabled=false
andisDataCollectionEnabled=false
produces spam in logSuggested workaround in #4238 (set
-FIRDebugEnabled
) in not a fix, its silently enables Performance module.My suggestion is change
to
Or something like that, because disabled traces is not an error at all.
The text was updated successfully, but these errors were encountered: