Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Crashlytics deprecating logException() what is the replacement?

Anyone know the replacement call in Crashlytics for logException() which seems to be deprecated as of 2.2.4? My issue is that I have exceptions that I catch, but I suspect they lead to further errors which then cause the application to crash. I want to log all handled exceptions also, and see them in one place. Was using Flurry but just didn't seem to do the trick, where as Crashlytics looks to be more robust. I want them all in the same tool since it is a thousand times easier matching up the exceptions in just one place, rather than patching it together thru LogEntries, Flurry and Crashlytics. Once I get the major crash elements identified I will slowly remove the logException() calls and just look for real hard crashes.

thanks!

like image 564
Stephen McCormick Avatar asked Jun 01 '15 21:06

Stephen McCormick


1 Answers

Here it is your : Crashlytics.getInstance().core.logException(e);

like image 55
YenMinh Avatar answered Sep 28 '22 07:09

YenMinh