Hi all,
Currently our mobile app team is planning to implement send custom non-fatal error logs to Firebase Crashlytics.
But we are now concerned about if our apps logs too much, whether it does have a bad side effect in terms of Firebase usage for example Google will not allow us to save any further data or other data usually we can get from Firebase SDK out of the box.
I found the following caution in the page below.
Caution: Avoid using unique values, such as user ID, product ID, and timestamps in the domain and code fields. Using unique values in these fields causes a high cardinality of issues and may result in Crashlytics needing to limit the reporting of logged errors in your app. Unique values should instead be added to the userInfo dictionary object.
I'd like to know whether we have any side effect for massive logging.
Thank you.