Ecroo
Ecroo

Reputation: 239

How to get crash log in iOS SDK

Is it possible to get the crash log from my app? I know that we can get the exception handler by NSSetUncaughtExceptionHandler, but I want to get the crash file which could be found by Organizer. I want to access that file and send to my server. Is there any supported SDK to do that?

Thanks!!

Upvotes: 2

Views: 831

Answers (1)

Jessedc
Jessedc

Reputation: 12460

The popular service HockeyApp is based on open source software that has it's own client that lives in your app and a basic server to collect crash reports from your app.

Check out their github account for more information on setting it all up.

https://github.com/TheRealKerni/QuincyKit

Upvotes: 3

Related Questions