Navigation Menu

Skip to content

Commit

Permalink
multi: remove verbose "Expire in" ... messages
Browse files Browse the repository at this point in the history
Reported-by: James Brown
Bug: https://curl.haxx.se/mail/archive-2019-02/0013.html
Closes #3558
  • Loading branch information
bagder committed Feb 12, 2019
1 parent aabe0a7 commit aabc7ae
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/multi.c
Expand Up @@ -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;
Expand Down

0 comments on commit aabc7ae

Please sign in to comment.