Avoid unnecessary calls to NSLog

This commit is contained in:
Ludovic Marcotte
2015-01-22 16:25:16 -05:00
parent 1a10599369
commit e2bee23021
5 changed files with 10 additions and 10 deletions

View File

@@ -272,7 +272,7 @@ static NSData* _sanitizeContent(NSData *theData)
if ([tag caseInsensitiveCompare: found_tag] == NSOrderedSame)
{
// Remove the leading slash
NSLog(@"Found void tag with invalid leading slash: </%@>", found_tag);
//NSLog(@"Found void tag with invalid leading slash: </%@>", found_tag);
i--;
[d replaceBytesInRange: NSMakeRange(i, 1)
withBytes: NULL