Skip to content

Instantly share code, notes, and snippets.

@bosky101
Created November 12, 2012 10:13
Show Gist options
  • Save bosky101/4058493 to your computer and use it in GitHub Desktop.
Save bosky101/4058493 to your computer and use it in GitHub Desktop.
- (void)logDebugMessage:(NSString *)message
{
if (DEBUG_LOG)
{
message = [NSString stringWithFormat:@"LOG: %@ \n", message];
NSLog(@"%@", message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment