Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/ca0514ea9218d3b419071056d954bbff9f18a1ac
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/ca0514ea9218d3b419071056d954bbff9f18a1ac
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/ca0514ea9218d3b419071056d954bbff9f18a1ac

The branch, master has been updated
       via  ca0514ea9218d3b419071056d954bbff9f18a1ac (commit)
      from  0df7ceb8f1483f5764d46c3c1da3fc51c04639bf (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=ca0514ea9218d3b419071056d954bbff9f18a1ac
commit ca0514ea9218d3b419071056d954bbff9f18a1ac
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    Curl fetcher: Move poll logging from INFO to DEEPDEBUG.

diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c
index bf9d88b..94708ea 100644
--- a/content/fetchers/curl.c
+++ b/content/fetchers/curl.c
@@ -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;


-----------------------------------------------------------------------

Summary of changes:
 content/fetchers/curl.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c
index bf9d88b..94708ea 100644
--- a/content/fetchers/curl.c
+++ b/content/fetchers/curl.c
@@ -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;


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to