Reporting Crashes
Manual Crash Reporting
Full Stack Trace
Current Thread Only
Report Exception
let exception = NSException(name: NSExceptionName("some_exception"), reason: "Exception reason")
if let nonFatalException = CrashReporting.exception(exception) {
nonFatalException.stackTraceMode = .full
nonFatalException.report()
}NSException *exception = [NSException exceptionWithName:@"some_exception" reason:@"Exception reason" userInfo:nil];
LCQNonFatalException *nonFatalException = [LCQCrashReporting exception:exception];
nonFatalException.stackTraceMode = LCQNonFatalStackTraceModeFull;
[nonFatalException report];Report Error
Adding Levels to Exception & Errors
Modifying Stacktraces for Handled Errors
Grouping
Crash-to-Screen Assignment Logic
Custom Grouping
Examples:
Custom Fingerprinting
Last updated