I'm not sure if this is possible. Here is an example situation:

Something is printing to my console and I don't know where it is coming from in the code. I did a quick search using the Finder in Xcode on terms such as 'NSLog' and 'print'. Nothing relevant came up.

Is there any quick way that Xcode has of finding where the source of the output is coming from ?

Kind of like when you right click on a method and you have all the options of exploring different parts of the code associated with that method.

Also: are there other functions that print besides NSLog and print?

Thanks so much!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Try running in the debugger, with breakpoints set on printf, NSLog, etc. When you hit a breakpoint do a backtrace (bt) to see where it's being called from

link|improve this answer
2  
And if that still doesn't help, try to set a breakpoint on the write system call (is there any other way to write to a tty-connected fd?) – mvds Aug 6 '10 at 13:34
feedback

Your Answer

 
or
required, but never shown

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