saman01
saman01

Reputation: 1004

How to view crash report on xcode 4.2

After I upgraded to Xcode 4.2 from Xcode 4.01, it does not generate any crash report in the debug "All Output" window. How can I see the crash report?

Thanks

Upvotes: 1

Views: 2043

Answers (2)

zer0her0
zer0her0

Reputation: 11

You can also use a service like Crittercism or Bugsense to automatically capture crash reports. Crittercism will even symbolize the crashes for you.

Upvotes: 1

WalterF
WalterF

Reputation: 1363

to get crash logs from the device do this:

  1. Sync your iPhone with iTunes

  2. Look into ~/Library/Logs/CrashReporter/MobileDevice/

make sure you can see hidden files otherwise you won't see the Library directory

Just drag the crash logs into your organizer to symbolicate them.

However, Xcode 4.2 has a bug which causes it to not symbolicate the crash logs correctly. Better upgrade to 4.2.1 and follow the given steps.

Upvotes: 3

Related Questions