Set Stack Trace Mode for Exceptions
API reference for the stack trace mode on reported exceptions in Luciq. Choose how much trace detail is captured for each exception.
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