vote up 4 vote down star
4

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

UPDATE: Thanks for the answers.. followup question... how do you do the same in a thread other than the main thread?

Neither method properly displayed the stack in such a case. The output is nonsensical wrt to the current context. However if I break in the debugger on the same point, I see the correct trace for that thread. Unfortunately I cannot reproduce the problem in the debugger that I need a stack trace for.

flag

3 Answers

vote up 5 vote down check

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|flag
vote up 2 vote down

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|flag
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
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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