我从PLCrashReporter解码plcrash日志,但有些信息未完成:
Incident Identifier: TODO
CrashReporter Key: TODO
...
Exception Type: SIGBUS
Exception Codes: BUS_ADRERR at 0x1
但是我从Organizer获得的崩溃日志是:
Incident Identifier: 79A8A9E4-9FD2-4A53-B43F-DC32C47AA073
CrashReporter Key: a767dd53c828e7977d7770d6d5c3c4238a2b525e
...
Exception Type: EXC_CRASH (SIGSEGV)
Exception Codes: 0x00000000, 0x00000000
如何获取正确的事件ID和CrashReporter密钥(我确实需要这个)?感谢。
BTW,PLCrashReporter的日志没有显示崩溃堆栈的线程名称。
答案 0 :(得分:1)
Swift代码:
let crash = PLCrashReportTextFormatter.stringValueForCrashReport(report, withTextFormat: PLCrashReportTextFormatiOS)
print("Report: \(crash)")
目标C代码:
NSString *crash = [PLCrashReportTextFormatter stringValueForCrashReport:report withTextFormat:PLCrashReportTextFormatiOS];
NSLog(@"Report: %@", crash);