From: Michael Vrable Date: Fri, 18 Mar 2011 08:34:33 +0000 (-0700) Subject: Turn down debugging. X-Git-Url: http://git.vrable.net/?p=bluesky.git;a=commitdiff_plain;h=e9bcb507c4e2ea94f38a9a947b620654d57bd6d0 Turn down debugging. --- diff --git a/bluesky/cache.c b/bluesky/cache.c index b20960c..f3307d4 100644 --- a/bluesky/cache.c +++ b/bluesky/cache.c @@ -437,8 +437,8 @@ static int compute_pressure(BlueSkyFS *fs) /* Too much uncommitted data in the journal on disk, not yet flushed to the * cloud? */ - printf("Dirty journals: %d to %d\n", - fs->log->journal_watermark, fs->log->seq_num); + /*printf("Dirty journals: %d to %d\n", + fs->log->journal_watermark, fs->log->seq_num);*/ int dirty_limit; dirty_limit = bluesky_options.cache_size / (LOG_SEGMENT_SIZE / 1024) / 2; int dirty_journals = fs->log->seq_num - fs->log->journal_watermark + 1;