easy: remove infof() debug leftover from curl_easy_recv

It said "reached [path]/easy.c:1231"

Closes #10628
This commit is contained in:
Daniel Stenberg 2023-02-27 18:12:07 +01:00
parent cf3e6ce92f
commit a26547b2a2
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -1228,7 +1228,6 @@ CURLcode curl_easy_recv(struct Curl_easy *data, void *buffer, size_t buflen,
return result;
*n = (size_t)n1;
infof(data, "reached %s:%d", __FILE__, __LINE__);
return CURLE_OK;
}