LoginSignup
23
24

More than 5 years have passed since last update.

NSLogでメッセージをファイルに出力する

Posted at

NSLogはstderrに吐いているだけなので,- (void)applicationDidFinishLaunching:(NSNotification *)aNotification内などで

freopen([@"/tmp/xcode.log" fileSystemRepresentation], "w+", stderr);

とすると/tmp/xcode.logに出力される.便利.

23
24
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
23
24