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.