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

I'd like to log the call trace during certain points, like failed assertions, or uncaught exceptions.

link|improve this question

feedback

4 Answers

up vote 56 down vote accepted
 NSLog(@"%@",[NSThread callStackSymbols]);

This code works on any thread.

link|improve this answer
7  
New in Mac OS X 10.6, which didn't exist when this question was originally asked. For pre-Snow-Leopard, use the backtrace and backtrace_symbols functions; see the backtrace(3) manpage. – Peter Hosey Feb 25 '10 at 13:32
Works in iOS too. – Pavel Alexeev Dec 16 '10 at 14:01
Only on iOS 4.0 and above. – Danra Mar 28 '11 at 8:42
feedback

Cocoa already logs the stack trace on uncaught exceptions to the console although they're just raw memory addresses. If you want symbolic information in the console there's some sample code from Apple.

If you want to generate a stack trace at an arbitrary point in your code (and you're on Leopard), see the backtrace man page. Before Leopard, you actually had to dig through the call stack itself.

link|improve this answer
4  
Apparently available in iOS 4 but not 3.2. Here's what I used, shamelessly copied from the backtrace man page: #include <execinfo.h> ... void* callstack[128]; int i, frames = backtrace(callstack, 128); char** strs = backtrace_symbols(callstack, frames); for (i = 0; i < frames; ++i) { printf("%s\n", strs[i]); } free(strs); – mharper Aug 28 '10 at 22:10
feedback

This pretty much tells you what to do.

Essentially you need to set up the applications exception handling to log, something like:

#import <ExceptionHandling/NSExceptionHandler.h>

[[NSExceptionHandler defaultExceptionHandler] setExceptionHandlingMask: NSLogUncaughtExceptionMask | NSLogUncaughtSystemExceptionMask | NSLogUncaughtRuntimeErrorMask]
link|improve this answer
Note, though that this will only work within a registered exception handler (not, e.g., in a @catch block) – Barry Wark Oct 23 '08 at 0:13
feedback

For exceptions, you can use the NSStackTraceKey member of the exception's userInfo dictionary to do this. See Controlling a Program's Response to Exceptions on Apple's website.

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.