From 6ff07e0b3ee431f57a26274c09d7d9e32954eb44 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sun, 26 Feb 2012 08:35:26 -0500 Subject: [PATCH] pull: Print download URLs by default, rather than requiring -v Let's leave verbose for more debug-type stuff. --- src/ostree/ostree-pull.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ostree/ostree-pull.c b/src/ostree/ostree-pull.c index aa907b8d..ec0adda0 100644 --- a/src/ostree/ostree-pull.c +++ b/src/ostree/ostree-pull.c @@ -106,7 +106,7 @@ fetch_uri (OstreeRepo *repo, chunkdata.error = error; uri_string = soup_uri_to_string (uri, FALSE); - log_verbose ("Fetching %s", uri_string); + g_print ("Fetching %s\n", uri_string); msg = soup_message_new_from_uri (SOUP_METHOD_GET, uri); soup_message_body_set_accumulate (msg->response_body, FALSE);