Set Stack Trace Mode for Exceptions
if let nonFatal = CrashReporting.report(exception) {
nonFatal.stackTraceMode = .callerThreadOnly
nonFatal.report()
}LCQNonFatalError *nonFatal = [LCQCrashReporting error:error];
nonFatal.stackTraceMode = LCQNonFatalStackTraceModeCallerThreadOnly.full //default
.callerThreadOnlyLCQNonFatalStackTraceModeFull //default
LCQNonFatalStackTraceModeCallerThreadOnlyLast updated