Possible Duplicate:
iphone how to get crash log from customers?

Some of my users are reporting crashes. What is the best way to explain to them how to send me their crash reports, so that they show up in the iTunes Connect list of crash reports? Do they get sent when users sync their phone with their computers? Thanks!

link|improve this question

77% accept rate
feedback

closed as exact duplicate by Lasse V. Karlsen Apr 26 at 13:01

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

5 Answers

up vote 12 down vote accepted

They will show up in iTunes Connect automatically if the users have enabled that.

When the user synchronizes their device using iTunes, crash reports are copied to a directory on the user's computer. If the application was distributed via the App Store and the user has chosen to submit crash logs to Apple, the crash log will be uploaded and the developer can download it via iTunes Connect.

See: http://developer.apple.com/library/ios/#technotes/tn2008/tn2151.html

link|improve this answer
3  
+1 Specifically the Acquiring Crash Reports section (more direct link). – Sam Feb 23 at 15:40
feedback

I've been using Crittercism to automatically get crash reports. I like it better than iTunes because you get an email alert immediately after a crash.

link|improve this answer
feedback

You could use BugSense and get crash reports without asking the users. Disclaimer: I am a co-founder at BugSense

link|improve this answer
1  
Your link is broken, you need to remove the extra characters at the end. BTW cool looking software, will be checking it out in further detail. – Shane Jul 26 '11 at 17:12
feedback

When the users sync with the computer they go to:

  • Mac OS X : ~/Library/Logs/CrashReporter/MobileDevice/
  • Windows XP: C:\Documents and Settings\\Application Data\Apple computer\Logs\CrashReporter/
  • Windows Vista: C:\Users\\AppData\Roaming\Apple computer\Logs\CrashReporter/MobileDevice/

The log file names start with application name and have the extension “crash”. They are just plain text files and can be sent by e-mail in original or zipped form, or even copy-pasted into your e-mail program.

From: http://www.anoshkin.net/blog/2008/09/09/iphone-crash-logs/ after a SIMPLE search on google for "iphone crash reports".

link|improve this answer
what you say is true, but it's not what the OP is asking. @Jason - yes, the crash reports will show up in iTunes Connect after the users sync their devices with iTunes on their desktops. – jsd Dec 1 '10 at 17:19
ah i see. missed that bit. my appologies – Thomas Clayson Dec 2 '10 at 9:47
This response is very helpful as in my experience the crash report may not actually show up in iTunes Connect. My user who contacted me about a crash told me they did sync and send a report yet I still see "Too few reports have been submitted for a report to be shown" in iTunes Connect. Maybe if there's only one crash report Apple doesn't show it. – Clafou Sep 24 '11 at 23:30
feedback

In iTunes, with their device tethered, if the user control-clicks on the name for their device, they will be able to select "Reset Warnings". Afterwards, a dialog box will pop up when the user next Syncs their device asking if it's OK to send data to Apple. If they click OK, then iTunes will upload all the crash logs from their device to Apple's servers.

Afterwards, you should be able to find your crash logs in iTunes Connect, and download them yourself. New crash logs will appear if your app still has problems and the user Syncs again, all automagically.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.