Skip to content

Instantly share code, notes, and snippets.

@hsienwei
Created July 30, 2014 09:22
Show Gist options
  • Save hsienwei/82778844500073133a82 to your computer and use it in GitHub Desktop.
Save hsienwei/82778844500073133a82 to your computer and use it in GitHub Desktop.
一個簡單的測試用Log方法 用於objective-c
#ifdef DEBUG
# define debugLog(format, ...) NSLog(@"<Debug>: " format @" [" __FILE__ @":%i]", ##__VA_ARGS__, __LINE__)
#else
# define debugLog(format, ...)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment