]> granicus.if.org Git - curl/commitdiff
multi: remove verbose "Expire in" ... messages
authorDaniel Stenberg <daniel@haxx.se>
Mon, 11 Feb 2019 21:57:33 +0000 (22:57 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 12 Feb 2019 13:13:15 +0000 (14:13 +0100)
Reported-by: James Brown
Bug: https://curl.haxx.se/mail/archive-2019-02/0013.html
Closes #3558

lib/multi.c

index 6b891620f61ce2df63a6adbd34743d9329a862ef..cd9d758ca4bc03730d03964174a1d85b130d419b 100644 (file)
@@ -3032,9 +3032,6 @@ void Curl_expire(struct Curl_easy *data, time_t milli, expire_id id)
 
   DEBUGASSERT(id < EXPIRE_LAST);
 
-  infof(data, "Expire in %ld ms for %x (transfer %p)\n",
-        (long)milli, id, data);
-
   set = Curl_now();
   set.tv_sec += milli/1000;
   set.tv_usec += (unsigned int)(milli%1000)*1000;