]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
Remove debug logs that were accidentally checked in
authorJoe Mason <jmason@rim.com>
Mon, 6 Aug 2012 17:43:52 +0000 (13:43 -0400)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 6 Aug 2012 22:21:14 +0000 (00:21 +0200)
tests/server/sws.c

index 47e18d834b0e603a4ab14022e2de30df44c52030..bff4a87711a0d1ab39a166e25063623187dbdb25 100644 (file)
@@ -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;