Logging non-fatal exceptions
See original GitHub issueSometimes there are exceptions that do/should not crash the applications.
Would be great if there was the possibility of logging it with Crashlitics::logException
.
Issue Analytics
- State:
- Created 5 years ago
- Comments:14 (12 by maintainers)
Top Results From Across the Web
Log Non-fatal errors on Crashlytics - android - Stack Overflow
I manage errors on my app and I want to log when specifics errors codes are returned. So, on Crashlytics I'd like the...
Read more >Non-fatal errors vs fatal crashes: The differences explained
A non-fatal error is a failure in your application that didn't result in a crash for the user. In other words: the loss...
Read more >Customize your Firebase Crashlytics crash reports - Google
Report non-fatal exceptions. In addition to automatically reporting your app's crashes, Crashlytics lets you record non-fatal exceptions and sends them to you ...
Read more >Part 4: capturing non-fatal Android errors - Bugsnag
A non-fatal error might be an exception that is caught within a try-catch block, or a performance issue such as an ANR, which...
Read more >Effective logging in Production with Firebase Crashlytics
When exceptions are logged manually in Firebase, they are logged as non-fatals. The best way to use non-fatals in your app is to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@jaggernod I’m doing the iOS side and in fact by using the API I notice that
logError
andlogException
are maybe not needed…I just add a
reportCrash()
method to be able to support Zone reporting, so it mean that it will do same aslogError
andlogException
…So my idea is to remove those and just have an reportError (who can handle exception or error). What do you think ?
Basically now the
main
will look like this:@jaumard Thank you for the reply. I couldnt see the non-fatal exception in the dashborad after 3 days as well and my project is working fine in the debug mode but gettiing the following exception in the release mode. Please help
I could fix it with