Tagged Questions

3
votes
2answers
1k views

iPhone: Once I have redirected NSLog to a file, how do I revert it to the console?

I'm using: #if TARGET_IPHONE_SIMULATOR == 0 NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths ...
0
votes
2answers
208 views

Giving freopen() and stderr a buffer (restricting size of a log file for iOS app)

I'm currently redirecting NSLog() output to a file using a call to freopen() from the App Delegate. I would like to restrict the log file size, but doing this- unsigned long long fs = 3000; while ...