summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2020-07-08 14:47:36 +0200
committerGitHub <noreply@github.com>2020-07-08 14:47:36 +0200
commit3a22b246d398944a7c1dc9d47b674d8f16c4ea90 (patch)
tree04ef6fa3ef35cd4c936556427e12a8ecb6f34332
parente37a3a286064cb050a9ef36600c978bf39348a98 (diff)
parentbf746f6f2236804ac4caf0f5d588549eb8530a05 (diff)
Merge pull request #13830 from vespa-engine/vekterli/reduce-log-level-of-db-prune-elision
Reduce log level of bucket DB pruning elision message
-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;