Reputation: 747
I've got some logs on Xcode's Organizer but I don't know how to properly debug them. I've read Apple Documentation at Apple Documentation by it doesn't tells me where the error/crash message is. It's hard to debug if you don't know what has caused it. When I try to open each log in Finder, it opens a .xccrashpoint file, not a standard crash log.
Is there anyway to know the error message (as we received on previous crash reports)?
Upvotes: 14
Views: 9490
Reputation: 4908
right-click on .xccrashpoint and select Show Package Contents
find .crash
file you like (in some Logs
folder you choose)
right-click on concrete .crash file and select -> Open With
-> Xcode
and choose your project
Upvotes: 0
Reputation: 1048
Actually this file is a package and by right click on, and select
Show Package Contents
you can see contents of it.
You see the all reports file, then open them by "Console" application
Upvotes: 11
Reputation: 506
I have stumbled on this recently too. What helped me was:
Then you need to symbolicate the crash. There are several ways to do this, but the easiest I know is to:
Upvotes: 30