summaryrefslogtreecommitdiff
path: root/src/conn
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-04-15 12:37:03 -0400
committerKeith Bostic <keith@wiredtiger.com>2013-04-15 12:37:03 -0400
commitc4d5e79624293f0a3e6bc592bc906a62bbd3ae1c (patch)
treec89b46ddd68e675ff3e995e6d3cca549baf02d40 /src/conn
parentde98dc93f26f577f10724344e04de3906d2585dc (diff)
parentb6508bc5b9c23eb42163bc01719ada3cac1d5fb9 (diff)
downloadmongo-c4d5e79624293f0a3e6bc592bc906a62bbd3ae1c.tar.gz
Merge branch 'develop' into data-source
Diffstat (limited to 'src/conn')
-rw-r--r--src/conn/conn_cache_pool.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/conn/conn_cache_pool.c b/src/conn/conn_cache_pool.c
index c2cee12ba7f..894cb4af1ec 100644
--- a/src/conn/conn_cache_pool.c
+++ b/src/conn/conn_cache_pool.c
@@ -428,10 +428,10 @@ __cache_pool_adjust(uint64_t highest, uint64_t bump_threshold)
grew = 0;
force = (cp->currently_used > cp->size);
if (WT_VERBOSE_ISSET(session, shared_cache)) {
- WT_VERBOSE_RET(session, shared_cache,
+ WT_VERBOSE_RET(session, shared_cache,
"Cache pool distribution: ");
- WT_VERBOSE_RET(session, shared_cache,
- "\tcache_size, read_pressure, skips: ");
+ WT_VERBOSE_RET(session, shared_cache,
+ "\t" "cache_size, read_pressure, skips: ");
}
TAILQ_FOREACH(entry, &cp->cache_pool_qh, cpq) {
@@ -440,7 +440,7 @@ __cache_pool_adjust(uint64_t highest, uint64_t bump_threshold)
adjusted = 0;
read_pressure = cache->cp_current_evict / highest;
- WT_VERBOSE_RET(session, shared_cache,
+ WT_VERBOSE_RET(session, shared_cache,
"\t%"PRIu64", %"PRIu64", %d",
entry->cache_size, read_pressure, cache->cp_skip_count);