summaryrefslogtreecommitdiff
path: root/src/libostree/ostree-repo-pull.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2020-10-20 15:51:08 +0200
committerAlexander Larsson <alexl@redhat.com>2020-10-23 13:55:33 +0200
commit654f3d959a4563ccf7d36182f4ee7a25a70fa016 (patch)
treef1aa9ba629a58813607633d344876dce7c4291ed /src/libostree/ostree-repo-pull.c
parent8cd796f3f1d0e82ea57b30229e692c31f9cb2e03 (diff)
downloadostree-654f3d959a4563ccf7d36182f4ee7a25a70fa016.tar.gz
ostree pull: Add more g_debug spew around fetching deltas
This is useful to debug what is happening when downloading via deltas.
Diffstat (limited to 'src/libostree/ostree-repo-pull.c')
-rw-r--r--src/libostree/ostree-repo-pull.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libostree/ostree-repo-pull.c b/src/libostree/ostree-repo-pull.c
index 81956d3d..da421db3 100644
--- a/src/libostree/ostree-repo-pull.c
+++ b/src/libostree/ostree-repo-pull.c
@@ -2145,6 +2145,7 @@ start_fetch_deltapart (OtPullData *pull_data,
FetchStaticDeltaData *fetch)
{
g_autofree char *deltapart_path = _ostree_get_relative_static_delta_part_path (fetch->from_revision, fetch->to_revision, fetch->i);
+ g_debug ("starting fetch of deltapart %s", deltapart_path);
pull_data->n_outstanding_deltapart_fetches++;
g_assert_cmpint (pull_data->n_outstanding_deltapart_fetches, <=, _OSTREE_MAX_OUTSTANDING_DELTAPART_REQUESTS);
_ostree_fetcher_request_to_tmpfile (pull_data->fetcher,
@@ -2608,6 +2609,7 @@ start_fetch_delta_superblock (OtPullData *pull_data,
g_autofree char *delta_name =
_ostree_get_relative_static_delta_superblock_path (fetch_data->from_revision,
fetch_data->to_revision);
+ g_debug ("starting fetch of delta superblock %s", delta_name);
_ostree_fetcher_request_to_membuf (pull_data->fetcher,
pull_data->content_mirrorlist,
delta_name, OSTREE_FETCHER_REQUEST_OPTIONAL_CONTENT,
@@ -2760,6 +2762,7 @@ start_fetch_delta_index (OtPullData *pull_data,
{
g_autofree char *delta_name =
_ostree_get_relative_static_delta_index_path (fetch_data->to_revision);
+ g_debug ("starting fetch of delta index %s", delta_name);
_ostree_fetcher_request_to_membuf (pull_data->fetcher,
pull_data->content_mirrorlist,
delta_name, OSTREE_FETCHER_REQUEST_OPTIONAL_CONTENT,