mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-02-16 22:43:58 +03:00
Curl fetcher: Move poll logging from INFO to DEEPDEBUG.
This commit is contained in:
parent
0df7ceb8f1
commit
ca0514ea92
@ -1196,7 +1196,7 @@ static void fetch_curl_poll(lwc_string *scheme_ignored)
|
||||
error = true;
|
||||
}
|
||||
if (read || write || error) {
|
||||
NSLOG(netsurf, INFO, " fd %i: %s %s %s", i,
|
||||
NSLOG(netsurf, DEEPDEBUG, " fd %i: %s %s %s", i,
|
||||
read ? "read" : " ",
|
||||
write ? "write" : " ",
|
||||
error ? "error" : " ");
|
||||
@ -1208,7 +1208,7 @@ static void fetch_curl_poll(lwc_string *scheme_ignored)
|
||||
do {
|
||||
codem = curl_multi_perform(fetch_curl_multi, &running);
|
||||
if (codem != CURLM_OK && codem != CURLM_CALL_MULTI_PERFORM) {
|
||||
NSLOG(netsurf, INFO, "curl_multi_perform: %i %s",
|
||||
NSLOG(netsurf, DEEPDEBUG, "curl_multi_perform: %i %s",
|
||||
codem, curl_multi_strerror(codem));
|
||||
guit->misc->warning("MiscError", curl_multi_strerror(codem));
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user