C Marco for Objective C NSLog without timestamp and any extra information. http://bit.ly/NSLogMacro
// From here - http://stackoverflow.com/questions/7517252/clean-nslog-no-timestamp-and-program-name
#define NSLog(FORMAT, ...) printf("%s\n", [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);