using iphone sdk 4.0 I want to remove the function name stuff from this macro but am struggling
#define LOG(fmt, ...) NSLog((@"%s " fmt), __PRETTY_FUNCTION__,##__VA_ARGS__)
i tried
#define LOG(fmt, ...) NSLog((@"%s " fmt), ##__VA_ARGS__)
but this results in a crash!!
I want to be able to log like this
LOG("text to log");
LOG("text to log with param %d", param); etc