diff options
author | Keith Bostic <keith@wiredtiger.com> | 2014-04-28 08:18:26 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2014-04-28 08:18:26 -0400 |
commit | dde7eb3b74bd7565f6d2764ac86b9edad892a944 (patch) | |
tree | 9f24379522c75cfdb076bc6300c3a578125ead55 /src/btree/bt_debug.c | |
parent | 984d6fd368dc306219fa0fafd971760a0d9d4138 (diff) | |
download | mongo-dde7eb3b74bd7565f6d2764ac86b9edad892a944.tar.gz |
Add a couple of missing flags to debug output.
Diffstat (limited to 'src/btree/bt_debug.c')
-rw-r--r-- | src/btree/bt_debug.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/btree/bt_debug.c b/src/btree/bt_debug.c index 7d4fd1c7436..5cf3ee32cbd 100644 --- a/src/btree/bt_debug.c +++ b/src/btree/bt_debug.c @@ -590,6 +590,10 @@ __debug_page_metadata(WT_DBG *ds, WT_PAGE *page) __dmsg(ds, ", disk-mapped"); if (F_ISSET_ATOMIC(page, WT_PAGE_EVICT_LRU)) __dmsg(ds, ", evict-lru"); + if (F_ISSET_ATOMIC(page, WT_PAGE_SCANNING)) + __dmsg(ds, ", scanning"); + if (F_ISSET_ATOMIC(page, WT_PAGE_SPLITTING)) + __dmsg(ds, ", splitting"); if (mod != NULL) switch (F_ISSET(mod, WT_PM_REC_MASK)) { |