Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Crashlytics log exception

In my ios app I'm catching a crash but I still want it to log in crashlytics so that I'm aware of it. On Android (Java) devices I can run Crashlytics.logException but I'm not seeing anything like that for objectiveC. I've searched google for how to do this but I'm not finding anything helpful. Does anyone have any experience with doing this with crashlytics on iOS devices?

like image 804
Jacksonkr Avatar asked Aug 11 '14 16:08

Jacksonkr


1 Answers

Anything you log using Crashlytics is only sent to the server when an actual crash occurs. Unfortunately, it doesn't support sending logs to the service without a crash. You might want to create an API in your backend for this or use another service like Flurry or Mixpanel to get some metrics around when your exception is occurring.

like image 149
badAPI Avatar answered Sep 24 '22 00:09

badAPI