Where's my NSLog output?
Where's my NSLog output?
- Subject: Where's my NSLog output?
- From: Jason <email@hidden>
- Date: Thu, 1 Nov 2007 20:55:38 -0600
I hate to sound stupid, but I can't seem to get my NSLog statements to output into the Xcode console using Xcode 3. As a simple test, I create a brand new Foundation Tool project which, by default, contains only this code in my
main.m:
#import <Foundation/Foundation.h>
int main (int argc, const
char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool
alloc] init];
// insert code here...
NSLog(@"Hello, World!"
);
[pool drain];
return 0;
}
When I run the project, I can see the "Hello, World" in Console.app if I have it running, but I don't see any output in the Build Results window. This has always worked in my previous Xcode
2.x projects by default. Is this not the configuration in Xcode 3? Is there some setting I have to change?
Thanks in advance,
Jason
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden