From 52752493962753a87f492c82958b8708e8eb6da5 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 b861129..818c730 100644 --- a/src/bees-roots.cc +++ b/src/bees-roots.cc @@ -174,9 +174,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);