Skip to content

Instantly share code, notes, and snippets.

@fuacici
fuacici / DebugLog
Created November 8, 2013 02:09
Debuglog for Objective-C development
#ifdef DEBUG
#define DebugLog( s, ... ) NSLog( @"<%p %@:%d (%@)> %@", self, [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, NSStringFromSelector(_cmd), [NSString stringWithFormat:(s), ##__VA_ARGS__] )
#else
#define DebugLog( s, ... )
#endif