Return to Snippet

Revision: 24129
at February 21, 2010 18:51 by ikex


Initial Code
// Macro voodo? Will not be printed if application is build with -DPRODUCTION
// Ex. Log(@"String with %s", @"Formatting");
#ifndef PRODUCTION
	#define Log(format, ...) \
		NSLog(@"(%s)[%s:%d] %s", __FUNCTION__,__FILE__,__LINE__, [[NSString stringWithFormat:format, ##__VA_ARGS__] UTF8String])
#else
	#define Log(format, ...) /* NOT USED IN PRODUCTION */
#endif

Initial URL


Initial Description


Initial Title
A better logging solution

Initial Tags
iphone

Initial Language
Objective C