From 1f668d1055f4f2a378c74736f469492d1a6d88d4 Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Sat, 16 Sep 2017 16:47:35 -0400 Subject: [PATCH] roots: trace transid_max calculation transid_max calculations can take considerable time. Report their progress in more detail. Signed-off-by: Zygo Blaxell --- src/bees-roots.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bees-roots.cc b/src/bees-roots.cc index 22bfa7b..2cba0b0 100644 --- a/src/bees-roots.cc +++ b/src/bees-roots.cc @@ -180,9 +180,9 @@ BeesRoots::transid_min() uint64_t BeesRoots::transid_max() { - BEESNOTE("Calculating transid_max"); uint64_t rv = 0; uint64_t root = 0; + BEESNOTE("Calculating transid_max (" << rv << " as of root " << root << ")"); BEESTRACE("Calculating transid_max..."); do { root = next_root(root);