LoginSignup
5
5

More than 5 years have passed since last update.

ログ出力マクロの書き方

Last updated at Posted at 2012-12-26

素敵な書き方があったのでメモ
http://stackoverflow.com/questions/969130/nslog-tips-and-tricks

#ifdef DEBUG
#   define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
#   define DLog(...)
#endif
5
5
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
5
5