I use Firebase Crash Reporting.
I saw here which is called Logs.
But how to use it?
I have Google Analyticsin my project, and I am trying to log alarms using FirebaseCrash.log()exactly the same method.
public void sendGoogleAnalyticsEvent(String category, String label, String action) {
Map<String, String> build = new HitBuilders.EventBuilder()
.setCategory(category)
.setLabel(label)
.setAction(action)
.build();
tracker.send(build);
FirebaseCrash.log("Category: " + category + " label: " + label + " action: " + action);
}
But I do not see any Logsin the accident. This guy is talking about automatically recorded events, I don’t see this either. What's wrong?

UPDATE : If I select "Analytics" from the Firebase menu, everything is displayed there and works correctly
source
share