Disable on device symbolication by default and add a property to enable it

This commit is contained in:
Andreas Linde
2014-02-11 16:37:06 +01:00
parent 6d6aa54bea
commit 53ae4c2dff
2 changed files with 21 additions and 1 deletions

View File

@@ -166,6 +166,20 @@ typedef NS_ENUM(NSUInteger, BITCrashManagerStatus) {
@property (nonatomic, assign, getter=isMachExceptionHandlerEnabled) BOOL enableMachExceptionHandler;
/**
* Enable on device symbolication for system symbols
*
* By default, the SDK does not symbolicate on the device, since this can
* take a few seconds at each crash. Also note that symbolication on the
* device might not be able to retrieve all symbols.
*
* Enable if you want to analyze crashes on unreleased OS versions.
*
* Default: _NO_
*/
@property (nonatomic, assign, getter=isOnDeviceSymbolicationEnabled) BOOL enableOnDeviceSymbolication;
/**
* Set the callbacks that will be executed prior to program termination after a crash has occurred
*