Anthony
Anthony

Reputation: 2801

How to configure xcode output text?

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

Answers (1)

dasdom
dasdom

Reputation: 14073

You can use printf("test\n");.

Upvotes: 2

Related Questions