Reputation: 2801
When you use for exemple:
NSLog(@"test");
The console print:
"2012-03-29 08:12:13.735 testApp[446:f803] test"
How to have only the "test" without "2012-03-29 08:12:13.735 testApp[446:f803]" ?
Upvotes: 1
Views: 359
Reputation: 14073
You can use printf("test\n");.
printf("test\n");
Upvotes: 2