Can anyone tell me what the difference is between NSLog and DLog?
I found about this DLog when I was looking over this project code: http:/
DLog is a macro meant to conditionalize the behavior of NSLog() in debug and release builds. For release builds it will print nothing. NSLog() is meant to print format strings to the console.
Here is its definition for reference:
#ifdef DEBUG
# define DLog(...) NSLog(__VA_ARGS__)
#else
# define DLog(...) /* */
#endif
#define ALog(...) NSLog(__VA_ARGS__)