From d249434185ca2b1cc1a5621c2ac06d65129f5ddd Mon Sep 17 00:00:00 2001 From: Michael Vrable Date: Fri, 11 Mar 2011 12:11:58 -0800 Subject: [PATCH] Drop another debugging message in non-verbose mode --- bluesky/log.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bluesky/log.c b/bluesky/log.c index 9d2550a..7728720 100644 --- a/bluesky/log.c +++ b/bluesky/log.c @@ -501,8 +501,9 @@ static void cloudlog_partial_fetch_start(BlueSkyCacheFile *cachefile, static void cloudlog_partial_fetch_complete(BlueSkyStoreAsync *async, BlueSkyCacheFile *cachefile) { - g_print("Fetch of %s from cloud complete, status = %d\n", - async->key, async->result); + if (bluesky_verbose || async->result != 0) + g_print("Fetch of %s from cloud complete, status = %d\n", + async->key, async->result); g_mutex_lock(cachefile->lock); if (async->result >= 0) { -- 2.20.1