up vote 11 down vote favorite
9
share [g+] share [fb]

When using one's own iPhone for development it's easy enough to access any crash logs via XCode->Organizer->Crash Logs.

How does one access crash logs on another person's phone if they don't have it set up for development in XCode, as would likely be the case if you were distributing your app to them via ad hoc distribution for beta testing?

link|improve this question

Any Updates to this annoying topic?! – Henrik P. Hessel Jul 29 '10 at 18:29
feedback

4 Answers

up vote 17 down vote accepted

Two ways:

  • iTunes syncs all crash reports during a regular sync. They can be found in Library/Logs/CrashReporter/MobileDevice on a Mac and probably somewhere in %APPDATA% on Windows.

  • You can use the iPhone Configuration Utility for Mac OS X on any Mac to access the phone's console and crash logs. Note: the iPhone Web Configuration Utility, which is available for Windows and Mac (note the "web" in the name) does not allow this kind of access and only provides a portion of the Configuration Utility's features. Er, no you can't. Xcode provides this facility in the Organizer (from the Window menu), but not iPCU.

link|improve this answer
The iPhone link above is broken. This one works for now, or, I suppose, you could always Google it... support.apple.com/downloads/… – Dan Fabulich Jul 10 '09 at 18:35
The iPhone Configuration Utility 2.0 for Mac OS X will let you save the console logs, but I can't find anything regarding crash logs in it. Am I missing something? – Jon-Eric Aug 20 '09 at 15:46
Edited to fix the error. – millenomi Aug 20 '09 at 21:58
feedback

From Apple's Technical Note TN2151:

For applications that have been distributed using Ad Hoc or Enterprise methods, getting crash reports requires user cooperation. Specifically, the user will need to retrieve the crash report from the directory where it was copied by iTunes. Depending on the platform, the directory is:

Mac OS X: ~/Library/Logs/CrashReporter/MobileDevice/<DEVICE_NAME>

Windows XP: C:\Documents and Settings\<USERNAME>\Application Data\Apple Computer\Logs\CrashReporter\MobileDevice\<DEVICE_NAME>

Windows Vista or 7: C:\Users\<USERNAME>\AppData\Roaming\Apple Computer\Logs\CrashReporter\MobileDevice\<DEVICE_NAME>

<USERNAME> is the user's login name for the computer. <DEVICE_NAME> is the name of the iPod touch or iPhone, for example, "John's iPhone".

You are only interested in .crash files. The crash report's file name begins with the application name and contains date/time information. In addition, <DEVICE_NAME> will appear at the end of the file name, before the extension.

link|improve this answer
feedback

http://www.ispeeddial.com/how-to-find-the-crash-log-for-an-iphone-application/

This will also be helpful;

http://furbo.org/2008/08/08/symbolicatifination/

link|improve this answer
first link is broken – Clay Bridges Oct 16 '10 at 23:20
feedback

Related to what @millenomi said - from what I can tell, crash logs are downloaded when you connect your iPhone to the computer, not when you sync the phone via iTunes. If your users have iTunes configured to not sync on connection, knowing this can save them the time of syncing. Along those same lines, if your application crashes while it's connected to a computer, simply syncing via iTunes is not enough to download crash logs - I've found that I need to disconnect and reconnect the phone to the computer.

I've only tested this on iPhones and iPod touches that are configured as development devices. Don't know if this makes any difference.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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