Skip to content

Instantly share code, notes, and snippets.

@sebastienwindal
Last active December 11, 2015 04:49
Show Gist options
  • Select an option

  • Save sebastienwindal/4547980 to your computer and use it in GitHub Desktop.

Select an option

Save sebastienwindal/4547980 to your computer and use it in GitHub Desktop.
+(void) DoNotUseNSLog_It:(NSString *)format, ...
{
// call AMPDebug or whatever...
AMPDebug(blah blah
}
+(void) DoNotUseNSLog_It:(NSString *)format, ... __attribute__ ((deprecated));
#define NSLog(s, ...) [YourLogginClass DoNotUseNSLog_It:(s, ##__VA_ARGS__)];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment