summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@yahooinc.com>2022-04-29 13:34:19 +0000
committerTor Brede Vekterli <vekterli@yahooinc.com>2022-04-29 13:34:19 +0000
commitfa4cf667304a9d465d36b7c26f537f7a07cfa4bb (patch)
treed0d991226f96cbf5bf5d29ce5b37439ea0793ae8 /storage
parentebf3e94b26c5645b756c32c108717908a552b9a0 (diff)
Add debug logging when receiving bucket info for a single requested bucket
Diffstat (limited to 'storage')
-rw-r--r--storage/src/vespa/storage/distributor/stripe_bucket_db_updater.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/storage/src/vespa/storage/distributor/stripe_bucket_db_updater.cpp b/storage/src/vespa/storage/distributor/stripe_bucket_db_updater.cpp
index 47eab46569e..3f7a0fc3d12 100644
--- a/storage/src/vespa/storage/distributor/stripe_bucket_db_updater.cpp
+++ b/storage/src/vespa/storage/distributor/stripe_bucket_db_updater.cpp
@@ -516,6 +516,8 @@ StripeBucketDBUpdater::processSingleBucketInfoReply(
handleSingleBucketInfoFailure(repl, req);
return true;
}
+ LOG(debug, "Received single bucket info reply from node %u: %s",
+ req.targetNode, repl->toString(true).c_str()); // Verbose mode to include bucket info in output
mergeBucketInfoWithDatabase(repl, req);
return true;
}