Are there any crash logs generated by iPhone Simulator?

the Simulator crashes a lot but not leaving any traces in Console... the crash log will be useful.

link|improve this question

1  
I don't quite understand why you need the crash logs. When the app in the simulator crashes but before you stop the debugging, at the gdb prompt type "bt" for "backtrace" -- you'll get exactly what would appear in the crash log. (didn't realize there was question necromancy here, missed the post year) – Matthew Frederick Dec 9 '10 at 22:53
1  
If the crash only occurred when you weren't attached by the debugger then you would need the logs. – Ian1971 Aug 1 '11 at 13:59
you're right. this make sense! – Shivan Raptor Aug 2 '11 at 0:19
feedback

5 Answers

up vote 33 down vote accepted

The console will show the NSLog() output from an app running in the simulator. The crash logs are saved to file.

I have found some in my home directory under

~/Library/Logs/DiagnosticReports/

They have a file extension of .crash

Something I haven't yet figured out is how to get them to generate even if the debugger grabs the EXC_BAD_ACCESS signal.

link|improve this answer
Bingo! you saved my life! – Shivan Raptor Dec 21 '09 at 1:20
Any idea why these logs are written to file instead of showing up in the console? Thanks for the info, btw. – aqua Mar 13 '11 at 5:02
None of my crash reports in iPhone or iPad simulator show up under this directory, maybe this answer needs to be updated? – Justin Nov 24 '11 at 16:34
Perhaps it does need an update, but a down vote isn't a very polite way to encourage it. – ohhorob Nov 24 '11 at 17:32
feedback

I am pretty sure that you can see this in the OS X Console app located in Utilities. If I'm wrong though, be sure to vote me the heck down so I delete this.

link|improve this answer
seems that it only applies to iPhone devices, instead of simulator. Correct me if I am wrong. – Shivan Raptor Dec 9 '09 at 7:50
feedback

Here’s something that worked for me in a special case... My app was crashing with SIGKILL as it terminated. I would see the exception in main.m for a few seconds, and then the app would finish terminating – thus, no chance to get the back trace.

I did a lot of searching on “where does simulator store its crash logs” and never managed to find an answer. However, the following trick came in quite handy and I was able to grab the crash log on the fly:

Basically, open /Applications/Utilities/CrashReporterPrefs.app and change the setting to “Developer”. This will cause CrashReporter to display a popup with the crash log after your app crashes.

I found this in the “Viewing iOS Simulator Console and Crash Logs” section in this doc from Apple: http://developer.apple.com/library/ios/#documentation/Xcode/Conceptual/ios_development_workflow/125-Using_iOS_Simulator/ios_simulator_application.html

link|improve this answer
By the way, the original problem with SIGKILL that I was researching turned out to be a non-issue: stackoverflow.com/questions/7901262/… – dana_a Nov 3 '11 at 19:44
I should point out that there was no CrashReporterPrefs app in Application/Utilities, however I searched for it and was able to find the app elsewhere. – Justin Nov 24 '11 at 16:37
feedback

The crash crash logs will appear under ~/Library/Logs/CrashReporter.

  • If the iPhone simulator program crashes (not the iPhone app running within the simulator), then there will be an entry for iPhoneSimulator.
  • If the iPhone App within the simulator crashes, the crash log will appear with the display name of the app.

When Xcode gets crash logs from a connected device, it stores them in sub-folders of ~/Library/Logs/CrashReporter/MobileDevice

link|improve this answer
feedback

This is much more reliable. In only a few steps I was able to find the source line number & method name:

  1. cd to the dir having the .app & .dSYM files
  2. run /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin MyApp.app/MyApp
  3. set print asm-demangle on
  4. set print symbol-filename on
  5. p/a 0×00015c64 -> address got by opening the crash log in “Console” app or just double clicking the the .crash file.
link|improve this answer
1  
I don't quite understand why you need the crash logs. When the app in the simulator crashes but before you stop the debugging, at the gdb prompt type "bt" for "backtrace" -- you'll get exactly what would appear in the crash log. – Matthew Frederick Dec 9 '10 at 22:55
This method works great for the crash logs from client phones. – Gamma-Point Dec 11 '11 at 1:32
feedback

Your Answer

 
or
required, but never shown

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