aboutsummaryrefslogtreecommitdiff
path: root/tests/server/sws.c
diff options
context:
space:
mode:
authorJoe Mason <jmason@rim.com>2012-08-06 13:43:52 -0400
committerDaniel Stenberg <daniel@haxx.se>2012-08-07 00:21:14 +0200
commit0df14c83932b2022c3f424985d8e1fe51f7fb8f5 (patch)
tree66094c54b05f123bfd679def7d789807672bafea /tests/server/sws.c
parent60a2ee88a5680b3f0f18adfc996f9ed83017bf38 (diff)
Remove debug logs that were accidentally checked in
Diffstat (limited to 'tests/server/sws.c')
-rw-r--r--tests/server/sws.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/server/sws.c b/tests/server/sws.c
index 47e18d834..bff4a8771 100644
--- a/tests/server/sws.c
+++ b/tests/server/sws.c
@@ -1796,7 +1796,6 @@ static int service_connection(int msgsock, struct httprequest *req,
while(!req->done_processing) {
int rc = get_request(msgsock, req);
- logmsg("get_request %d returned %d", msgsock, rc);
if (rc <= 0) {
/* Nothing further to read now (possibly because the socket was closed */
return rc;
@@ -2128,7 +2127,6 @@ int main(int argc, char *argv[])
/* Service this connection until it has nothing available */
do {
rc = service_connection(all_sockets[socket_idx], &req, sock, hostport);
- logmsg("service_connection %d returned %d", all_sockets[socket_idx], rc);
if(got_exit_signal)
goto sws_cleanup;