I'm using Fabric/Crashlytics in my android app, I use custom logs for logging connections issues and attach user id to log, but how can I search logs for a specific user?
For user id attachment I use Crashlytics.setUserIdentifier(getUserId());
method.
For custon key attachment I use Crashlytics.setString("error_type", "ConnectionException500");
I can this id in fabric logs, I can search issues by word in custom keys like search "Connection" and it will return all issues with ConnectionException500
as custom key, but I cannot understand how to search for a specific user? Like user with id 2332.
I have tried to search user:2332
and user=2332
and just 2332
but it shows nothing, and I know there're issues with that specific user (I can see some of them)