Arcanelab Blog
text

Useful C/C++/Objective C logging macro #define log(fmt, ...) printf(("[%d] %s(): "…

Useful C/C++/Objective C logging macro

#define log(fmt, ...) printf(("[%d] %s(): " fmt), __LINE__, __FUNCTION__, ##__VA_ARGS__)