3

我从 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 密钥(我确实需要这个)?谢谢。

顺便说一句,PLCrashReporter 的日志没有显示崩溃堆栈的线程名称。

4

1 回答 1

1

SWIFT代码:

let crash = PLCrashReportTextFormatter.stringValueForCrashReport(report, withTextFormat: PLCrashReportTextFormatiOS)
print("Report: \(crash)")

目标C代码:

NSString *crash = [PLCrashReportTextFormatter stringValueForCrashReport:report withTextFormat:PLCrashReportTextFormatiOS];
NSLog(@"Report: %@", crash);
于 2016-02-08T16:27:19.107 回答