X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=bluesky%2Fcache.c;h=f3307d40f899b3c52ee329fc8b37c09a13b24e26;hb=e9bcb507c4e2ea94f38a9a947b620654d57bd6d0;hp=b20960c1a7c4b5d0ee741c0dfebb79eb94646226;hpb=b52abd849493636b81dda8c752a60834f1a6b91f;p=bluesky.git 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;