I'd been happy using my debug statements until recently I upgraded Xcode and now they don't work.
#ifdef DEBUG
#   define SQLLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), 
                __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
#   define SQLLog(...)
#endif
What do I need to do to fix this ?