From: Michael Vrable Date: Fri, 11 Mar 2011 20:11:58 +0000 (-0800) Subject: Drop another debugging message in non-verbose mode X-Git-Url: http://git.vrable.net/?p=bluesky.git;a=commitdiff_plain;h=d249434185ca2b1cc1a5621c2ac06d65129f5ddd Drop another debugging message in non-verbose mode --- 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) {