5. 使用 LLDB bugreport 命令导出 App 运行崩溃日志
- (void)testBugReport {
NSArray *testArray = @[@"1", @"2", @"3"];
NSLog(@"%@", testArray[4]);
}bugreport unwind --outfile /Users/kangzubin/Desktop/buglog.txt
参考链接
Last updated
Was this helpful?
- (void)testBugReport {
NSArray *testArray = @[@"1", @"2", @"3"];
NSLog(@"%@", testArray[4]);
}bugreport unwind --outfile /Users/kangzubin/Desktop/buglog.txt
Last updated
Was this helpful?
Was this helpful?
bugreport unwind --outfile <path to output file> --append-outfile