summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@verizonmedia.com>2020-07-08 09:09:59 +0000
committerTor Brede Vekterli <vekterli@verizonmedia.com>2020-07-08 09:09:59 +0000
commitbf746f6f2236804ac4caf0f5d588549eb8530a05 (patch)
tree11787839497740a0c7285bc0330db163727d4b83
parent2382c0b85d828457ecad27856f71839a0d615372 (diff)
Reduce log level of bucket DB pruning elision message
Was originally set to `info` to help track down the source of an assertion failure that should not be possible to trigger and that only happened once. Many moons later it has yet to reappear, so removing some log noise that could only be interesting to me.
-rw-r--r--storage/src/vespa/storage/distributor/bucketdbupdater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/src/vespa/storage/distributor/bucketdbupdater.cpp b/storage/src/vespa/storage/distributor/bucketdbupdater.cpp
index 057b106f775..c5fd7027fa6 100644
--- a/storage/src/vespa/storage/distributor/bucketdbupdater.cpp
+++ b/storage/src/vespa/storage/distributor/bucketdbupdater.cpp
@@ -225,7 +225,7 @@ BucketDBUpdater::removeSuperfluousBuckets(
if (!is_distribution_config_change
&& db_pruning_may_be_elided(oldClusterState, *new_cluster_state, up_states))
{
- LOG(info, "[bucket space '%s']: eliding DB pruning for state transition '%s' -> '%s'",
+ LOG(debug, "[bucket space '%s']: eliding DB pruning for state transition '%s' -> '%s'",
document::FixedBucketSpaces::to_string(elem.first).data(),
oldClusterState.toString().c_str(), new_cluster_state->toString().c_str());
continue;