]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
pingpong: remove two old leftover debug infof() calls
authorDaniel Stenberg <daniel@haxx.se>
Mon, 6 Oct 2025 11:05:01 +0000 (13:05 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 6 Oct 2025 21:16:04 +0000 (23:16 +0200)
lib/pingpong.c

index ddd4020894471b71ea7b4fd5575fc59ef8af1560..3f6da71eae2c4afa0694ec331111c9aba87e36c5 100644 (file)
@@ -98,7 +98,6 @@ CURLcode Curl_pp_statemach(struct Curl_easy *data,
     return CURLE_OPERATION_TIMEDOUT; /* already too little time */
   }
 
-  DEBUGF(infof(data, "pp_statematch, timeout=%" FMT_TIMEDIFF_T, timeout_ms));
   if(block) {
     interval_ms = 1000;  /* use 1 second timeout intervals */
     if(timeout_ms < interval_ms)
@@ -116,9 +115,6 @@ CURLcode Curl_pp_statemach(struct Curl_easy *data,
     /* We are receiving and there is data ready in the SSL library */
     rc = 1;
   else {
-    DEBUGF(infof(data, "pp_statematch, select, timeout=%" FMT_TIMEDIFF_T
-           ", sendleft=%zu",
-           timeout_ms, pp->sendleft));
     rc = Curl_socket_check(pp->sendleft ? CURL_SOCKET_BAD : sock, /* reading */
                            CURL_SOCKET_BAD,
                            pp->sendleft ? sock : CURL_SOCKET_BAD, /* writing */