summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-03-05 08:06:33 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-03-05 08:06:33 +0000
commitd0e26bdbfe8cac208e96c27bd390ce19d2e275b5 (patch)
tree578f59c6a1ad709d0f2a4c8cc800062762a95ea1 /searchcore
parent0c6804dfc335357958dfcfce661f5e9c50037ee5 (diff)
Reduce to debug loglevel as sub 16G host will be capped.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/memory_flush_config_updater.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/memory_flush_config_updater.cpp b/searchcore/src/vespa/searchcore/proton/server/memory_flush_config_updater.cpp
index 1e60bb4f388..88e2096aa63 100644
--- a/searchcore/src/vespa/searchcore/proton/server/memory_flush_config_updater.cpp
+++ b/searchcore/src/vespa/searchcore/proton/server/memory_flush_config_updater.cpp
@@ -128,14 +128,14 @@ MemoryFlushConfigUpdater::convertConfig(const ProtonConfig::Flush::Memory &confi
const size_t hardMemoryLimit = getHardMemoryLimit(memory);
size_t totalMaxMemory = config.maxmemory;
if (totalMaxMemory > hardMemoryLimit) {
- LOG(info, "flush.memory.maxmemory=%" PRId64 " cannot"
+ LOG(debug, "flush.memory.maxmemory=%" PRId64 " cannot"
" be set above the hard limit of %ld so we cap it to the hard limit",
config.maxmemory, hardMemoryLimit);
totalMaxMemory = hardMemoryLimit;
}
size_t eachMaxMemory = config.each.maxmemory;
if (eachMaxMemory > hardMemoryLimit) {
- LOG(info, "flush.memory.each.maxmemory=%" PRId64 " cannot"
+ LOG(debug, "flush.memory.each.maxmemory=%" PRId64 " cannot"
" be set above the hard limit of %ld so we cap it to the hard limit",
config.maxmemory, hardMemoryLimit);
eachMaxMemory = hardMemoryLimit;