From 10b2f30165000ba0114db43c3f6651c667e51db2 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 3 Apr 2012 08:52:44 -0400 Subject: [PATCH] core: Make pull slightly more verbose --- src/ostree/ostree-pull.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ostree/ostree-pull.c b/src/ostree/ostree-pull.c index de3fa8f0..b3c1f5a2 100644 --- a/src/ostree/ostree-pull.c +++ b/src/ostree/ostree-pull.c @@ -874,10 +874,14 @@ pull_one_commit (OtPullData *pull_data, if (!ostree_repo_prepare_transaction (pull_data->repo, NULL, error)) goto out; + + g_print ("Downloading metadata...\n"); if (!fetch_and_store_commit_recurse (pull_data, rev, cancellable, error)) goto out; + g_print ("Downloading data...\n"); + if (!fetch_files (pull_data, cancellable, error)) goto out;