vote up 1 vote down star

I'd been using OCUnit (the default installation that comes with XCode) in XCode 3.0. I've been happy being able to run my tests and see the results in the Build Results window, as well as any NSLog() messages I output.

However, with XCode 3.1 the tests run fine, but I suddenly lose my NSLog() output. Anybody know where it went?

flag

2 Answers

vote up 2 vote down check

Just learning this stuff myself and had to poke around to answer that very question (XCode 3.1.2).

Go to the Build Results window after running. It may not open automatically, depending on configuration. Build / Build Results menu option will open it if needed.

In the middle area between the two panes, you'll see 4 buttons on the left. The 3rd icon is just 3-4 horizontal lines. Click that to toggle the build transcript. That shows all build steps and NSLog() output from the run.

link|flag
1  
What I actually did was make a macro to wrap NSLog() and forgot to #define DEBUG in my Test project. But, I'll give you the answer because most people aren't boneheaded as I am ;) – sehugg Jul 3 at 5:30
vote up 0 vote down

(on the menu-bar) Run -> Console (Shift-Apple-R)

link|flag

Your Answer

Get an OpenID
or

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