summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorKristian Aune <kraune@verizonmedia.com>2023-03-29 07:50:26 +0200
committerKristian Aune <kraune@verizonmedia.com>2023-03-29 07:50:26 +0200
commitba332bbbb7ee6542bb53874acafbe9e15aab1ea0 (patch)
tree9b31fd63df89334e462d619ca7c6ff9e83f80096 /config
parentf0e986818bb04b8db3ad3bb6784c20396077a575 (diff)
Reduce log level, no connection is normal in some cases
Diffstat (limited to 'config')
-rw-r--r--config/src/vespa/config/frt/frtconnection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/src/vespa/config/frt/frtconnection.cpp b/config/src/vespa/config/frt/frtconnection.cpp
index ff2a82f855b..4f1bf1c280c 100644
--- a/config/src/vespa/config/frt/frtconnection.cpp
+++ b/config/src/vespa/config/frt/frtconnection.cpp
@@ -104,7 +104,7 @@ void FRTConnection::calculateSuspension(ErrorType type)
switch(type) {
case TRANSIENT:
delay = std::min(MAX_DELAY_MULTIPLIER, ++_transientFailures) * _transientDelay;
- LOG(warning, "Connection to %s failed or timed out", _address.c_str());
+ LOG(debug, "Connection to %s failed or timed out", _address.c_str());
break;
case FATAL:
delay = std::min(MAX_DELAY_MULTIPLIER, ++_fatalFailures) * _fatalDelay;
@@ -112,7 +112,7 @@ void FRTConnection::calculateSuspension(ErrorType type)
}
_suspendedUntil = now + delay;
if (_suspendWarned < (now - WARN_INTERVAL)) {
- LOG(warning, "FRT Connection %s suspended until %s", _address.c_str(), vespalib::to_string(to_utc(_suspendedUntil)).c_str());
+ LOG(debug, "FRT Connection %s suspended until %s", _address.c_str(), vespalib::to_string(to_utc(_suspendedUntil)).c_str());
_suspendWarned = now;
}
}