remove debug log messages

This commit is contained in:
Sergei Golovin 2024-03-06 19:56:21 +04:00
parent b60f950630
commit 151948312c

View file

@ -201,7 +201,6 @@
object: _cfh]; object: _cfh];
[_cfh readInBackgroundAndNotify]; [_cfh readInBackgroundAndNotify];
} }
NSLog(@"accept");
} }
} }
@ -228,7 +227,6 @@
[_capture appendData: hunk]; [_capture appendData: hunk];
if ([self _tryCaptured]) // <- the _request and _response are allocated if ([self _tryCaptured]) // <- the _request and _response are allocated
{ {
NSLog(@"make and send");
[self _makeAndSendResponse]; [self _makeAndSendResponse];
// ready for another request-response cycle // ready for another request-response cycle
[self _resetCycle]; // <- the _request and _response are deallocated [self _resetCycle]; // <- the _request and _response are deallocated
@ -487,7 +485,6 @@
[_cfh sslDisconnect]; [_cfh sslDisconnect];
} }
DESTROY(_cfh); DESTROY(_cfh);
NSLog(@"close");
} }
@end /* SimpleWebServer (Private) */ @end /* SimpleWebServer (Private) */