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