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
Why not simply like this ?
#define LOG(fmt, ...) NSLog(fmt, ##__VA_ARGS__)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With