如何查看两周前的 Apple App Store 崩溃报告?
How do I view Apple App Store crash reports older than two weeks old?
昨天,我在 Xcode 的 Organizer 崩溃日志部分收到了两份崩溃报告。
今天,我的崩溃部分是空的,崩溃报告也不见了。
(Organizer 的崩溃日志部分为空状态)
Xcode 说,
"No crash logs reported for this version in the last two weeks"
但我需要访问昨天才存在的旧崩溃报告。
如何访问旧报告?
Apple 目前似乎只支持两周的崩溃统计时间范围。根据他们的 doc
Xcode downloads the top crash reports—crash reports with the most
number of occurrences on unique devices—that occurred during the past
two weeks.
如果您想保留下载的日志文件以供进一步分析,那么您可以通过
找到它
Right click on the crash report entry in Xcode's Organizer window and select "Show in Finder"
或通常在以下路径
~/Library/Developer/Xcode/Products/{your bundle id}/{your selected version number}/Crashes/AppStore/
您可以使用此 .xccrashpoint
包文件进行进一步分析()。
注意:更多更好的崩溃问题详细分析,可以使用这个工具:Fabric Crashlytics
希望对您有所帮助
昨天,我在 Xcode 的 Organizer 崩溃日志部分收到了两份崩溃报告。
今天,我的崩溃部分是空的,崩溃报告也不见了。
(Organizer 的崩溃日志部分为空状态)
Xcode 说,
"No crash logs reported for this version in the last two weeks"
但我需要访问昨天才存在的旧崩溃报告。
如何访问旧报告?
Apple 目前似乎只支持两周的崩溃统计时间范围。根据他们的 doc
Xcode downloads the top crash reports—crash reports with the most number of occurrences on unique devices—that occurred during the past two weeks.
如果您想保留下载的日志文件以供进一步分析,那么您可以通过
找到它Right click on the crash report entry in Xcode's Organizer window and select "Show in Finder"
或通常在以下路径
~/Library/Developer/Xcode/Products/{your bundle id}/{your selected version number}/Crashes/AppStore/
您可以使用此 .xccrashpoint
包文件进行进一步分析(
注意:更多更好的崩溃问题详细分析,可以使用这个工具:Fabric Crashlytics
希望对您有所帮助