You can use the below API to set the stack trace mode you want to capture when reporting exceptions
if let nonFatal = CrashReporting.report(exception) {
nonFatal.stackTraceMode = .callerThreadOnly
nonFatal.report()
}LCQNonFatalError *nonFatal = [LCQCrashReporting error:error];
nonFatal.stackTraceMode = LCQNonFatalStackTraceModeCallerThreadOnlyBelow are the different modes available:
.full //default
.callerThreadOnlyLCQNonFatalStackTraceModeFull //default
LCQNonFatalStackTraceModeCallerThreadOnly