summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorBjørn Meland <bjormel@users.noreply.github.com>2016-11-03 12:12:06 +0100
committerGitHub <noreply@github.com>2016-11-03 12:12:06 +0100
commit5f378945e74e598b428682e57b3957b370f7a0a3 (patch)
tree34abdb7ce2bd9fa088a526536bf4c490f4f85f71 /searchcore
parentcaab346880eae8373b8c03e7bd52989ba7f4b2c6 (diff)
log level info for memory_flush_config_updater
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 b2b5bce5c99..96b9fd21ddd 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
@@ -96,7 +96,7 @@ MemoryFlushConfigUpdater::convertConfig(const ProtonConfig::Flush::Memory &confi
{
size_t totalMaxMemory = config.maxmemory;
if (totalMaxMemory > TOTAL_HARD_MEMORY_LIMIT) {
- LOG(warning, "flush.memory.maxmemory=%ld cannot"
+ LOG(info, "flush.memory.maxmemory=%ld cannot"
" be set above the hard limit of %ld (16GB) so we cap it to the hard limit",
config.maxmemory,
TOTAL_HARD_MEMORY_LIMIT);
@@ -104,7 +104,7 @@ MemoryFlushConfigUpdater::convertConfig(const ProtonConfig::Flush::Memory &confi
}
size_t eachMaxMemory = config.each.maxmemory;
if (eachMaxMemory > EACH_HARD_MEMORY_LIMIT) {
- LOG(warning, "flush.memory.each.maxmemory=%ld cannot"
+ LOG(info, "flush.memory.each.maxmemory=%ld cannot"
" be set above the hard limit of %ld (12GB) so we cap it to the hard limit",
config.maxmemory,
EACH_HARD_MEMORY_LIMIT);