Remove 2 super verbose NSLog() statements.
authorRobert Sesek <rsesek@bluestatic.org>
Sun, 31 Oct 2010 16:11:23 +0000 (12:11 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Sun, 31 Oct 2010 16:11:23 +0000 (12:11 -0400)
Source/DebuggerConnection.m
Source/NSXMLElementAdditions.m

index 07fd033d129938760a0b966ca9ce56e09990f917..ac08ae314e0f9c8832a4aee07e8cc1cbf4443132 100644 (file)
@@ -493,7 +493,6 @@ void SocketAcceptCallback(CFSocketRef socket,
     bufferOffset += partLength + 1;
     
     // If this read finished the packet, handle it and reset.
-    NSLog(@"cpi %d ps %d br %d ds %d", currentPacketIndex_, packetSize_, bytesRead, partLength);
     if (currentPacketIndex_ >= packetSize_)
     {
       [self handlePacket:[[currentPacket_ retain] autorelease]];
index 079951c44983e30c9ff4517c8aa41fa7dd074c2c..55c8a967d2c51c0d9ddf78bf548279047f71281d 100644 (file)
@@ -41,7 +41,6 @@
   }
   
   // The value of the node is base64 encoded.
-  NSLog(@"encoding check");
   if ([[[self attributeForName:@"encoding"] stringValue] isEqualToString:@"base64"]) {
     const char* str = [[self stringValue] UTF8String];
     int strlen = [[self stringValue] length];