admin管理员组文章数量:1024592
I use the following methods to report custom logs,
FirebaseCrashlytics.getInstance().log(msg);
FirebaseCrashlytics.getInstance().recordException(new Throwable("Custom log end"));
However, when viewing "Logs and Breadcrumbs Navigation" on the Crashlytics page in the Firebase console, only the latest custom log can be viewed. In fact, the actually recorded content has a timestamp added, and it's different each time.
I report logs using the following methods. I don't know how to configure and view them in the Firebase console.
Bundle bundle = new Bundle();
bundle.putString("test", msg);
FirebaseAnalytics.getInstance(this).logEvent("CustomLog", bundle);
I hope there are ways to view every custom log reported in the console. Please provide specific code and console configurations.
I use the following methods to report custom logs,
FirebaseCrashlytics.getInstance().log(msg);
FirebaseCrashlytics.getInstance().recordException(new Throwable("Custom log end"));
However, when viewing "Logs and Breadcrumbs Navigation" on the Crashlytics page in the Firebase console, only the latest custom log can be viewed. In fact, the actually recorded content has a timestamp added, and it's different each time.
I report logs using the following methods. I don't know how to configure and view them in the Firebase console.
Bundle bundle = new Bundle();
bundle.putString("test", msg);
FirebaseAnalytics.getInstance(this).logEvent("CustomLog", bundle);
I hope there are ways to view every custom log reported in the console. Please provide specific code and console configurations.
Share Improve this question edited Nov 19, 2024 at 5:15 James Z 12.3k10 gold badges27 silver badges47 bronze badges asked Nov 19, 2024 at 4:36 Politchi LiPolitchi Li 111 bronze badge1 Answer
Reset to default 0You need to check Firebase Analytics Console, not Crashlytics. Custom events reported using logEvent will appear there
I use the following methods to report custom logs,
FirebaseCrashlytics.getInstance().log(msg);
FirebaseCrashlytics.getInstance().recordException(new Throwable("Custom log end"));
However, when viewing "Logs and Breadcrumbs Navigation" on the Crashlytics page in the Firebase console, only the latest custom log can be viewed. In fact, the actually recorded content has a timestamp added, and it's different each time.
I report logs using the following methods. I don't know how to configure and view them in the Firebase console.
Bundle bundle = new Bundle();
bundle.putString("test", msg);
FirebaseAnalytics.getInstance(this).logEvent("CustomLog", bundle);
I hope there are ways to view every custom log reported in the console. Please provide specific code and console configurations.
I use the following methods to report custom logs,
FirebaseCrashlytics.getInstance().log(msg);
FirebaseCrashlytics.getInstance().recordException(new Throwable("Custom log end"));
However, when viewing "Logs and Breadcrumbs Navigation" on the Crashlytics page in the Firebase console, only the latest custom log can be viewed. In fact, the actually recorded content has a timestamp added, and it's different each time.
I report logs using the following methods. I don't know how to configure and view them in the Firebase console.
Bundle bundle = new Bundle();
bundle.putString("test", msg);
FirebaseAnalytics.getInstance(this).logEvent("CustomLog", bundle);
I hope there are ways to view every custom log reported in the console. Please provide specific code and console configurations.
Share Improve this question edited Nov 19, 2024 at 5:15 James Z 12.3k10 gold badges27 silver badges47 bronze badges asked Nov 19, 2024 at 4:36 Politchi LiPolitchi Li 111 bronze badge1 Answer
Reset to default 0You need to check Firebase Analytics Console, not Crashlytics. Custom events reported using logEvent will appear there
本文标签: javaFirebase Custom Logs Only Showing the Latest EntryStack Overflow
版权声明:本文标题:java - Firebase Custom Logs Only Showing the Latest Entry - Stack Overflow 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1745582030a2157366.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论