From: Philip Withnall Date: Wed, 26 Apr 2023 13:04:03 +0000 (+0100) Subject: lib/fetcher: Add some debugging messages to the libsoup request path X-Git-Tag: archive/raspbian/2023.7-3+rpi1~1^2~9^2~2^2~6^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=77e334e5b47826fb3919c337a517f66861dd824f;p=ostree.git lib/fetcher: Add some debugging messages to the libsoup request path This will help with debugging stalled requests in future, such as issue #605. Signed-off-by: Philip Withnall Helps: #605 --- diff --git a/src/libostree/ostree-fetcher-soup.c b/src/libostree/ostree-fetcher-soup.c index 53a63f14..638a950b 100644 --- a/src/libostree/ostree-fetcher-soup.c +++ b/src/libostree/ostree-fetcher-soup.c @@ -485,6 +485,12 @@ session_thread_request_uri (ThreadClosure *thread_closure, return; } + { + g_autofree gchar *uri_str = soup_uri_to_string (soup_request_get_uri (pending->request), FALSE); + g_debug ("%s: starting request %p for URI %s, using GTask %p", + G_STRFUNC, pending->request, uri_str, task); + } + if (SOUP_IS_REQUEST_HTTP (pending->request) && thread_closure->extra_headers) { glnx_unref_object SoupMessage *msg = soup_request_http_get_message ((SoupRequestHTTP*) pending->request); @@ -1069,6 +1075,10 @@ on_request_sent (GObject *object, pending->request_body = soup_request_send_finish ((SoupRequest*) object, result, &local_error); + g_debug ("%s: request %p (GTask %p) finished with request_body %p and error %s", + G_STRFUNC, object, task, pending->request_body, + (local_error != NULL) ? local_error->message : "none"); + if (!pending->request_body) goto out; g_assert_no_error (local_error);