summaryrefslogtreecommitdiff
path: root/src/btree/bt_debug.c
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2014-04-28 08:18:26 -0400
committerKeith Bostic <keith@wiredtiger.com>2014-04-28 08:18:26 -0400
commitdde7eb3b74bd7565f6d2764ac86b9edad892a944 (patch)
tree9f24379522c75cfdb076bc6300c3a578125ead55 /src/btree/bt_debug.c
parent984d6fd368dc306219fa0fafd971760a0d9d4138 (diff)
downloadmongo-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.c4
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)) {