Tagged Questions

0
votes
2answers
60 views

NSLog output to file, or logging function for iPhone

I want to be able to write the contents of NSLog to a file I specify, or I need a function that writes a log to a file, for example: WriteLog(@"some activity by the user"); WriteLog(@"some more …
0
votes
1answer
36 views

freopen_s on stdout causes problems with GetConsoleScreenBufferInfo on Windows

To temporarily redirect stdout to a file, I'm doing: printf("Before"); freopen_s(&stream, "test.txt", "w", stdout); printf("During"); freopen_s(&stream, "CONOUT$", "w", stdout); …