summaryrefslogtreecommitdiffstats
path: root/configd
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2021-06-02 12:14:36 +0000
committerArne Juul <arnej@verizonmedia.com>2021-06-02 12:14:36 +0000
commitec1eddbea020a6db5ba97cf5f2d8f45cc508ad95 (patch)
treeca6e35900e498bda0119ac983696d621e61a0480 /configd
parent2b1964dd62942c7d75920357454937e374331320 (diff)
less log spam
Diffstat (limited to 'configd')
-rw-r--r--configd/src/apps/sentinel/outward-check.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/configd/src/apps/sentinel/outward-check.cpp b/configd/src/apps/sentinel/outward-check.cpp
index ebdd723cb76..bd6c22e7264 100644
--- a/configd/src/apps/sentinel/outward-check.cpp
+++ b/configd/src/apps/sentinel/outward-check.cpp
@@ -27,20 +27,20 @@ void OutwardCheck::RequestDone(FRT_RPCRequest *req) {
if (req->CheckReturnTypes("s")) {
std::string answer = _req->GetReturn()->GetValue(0)._string._str;
if (answer == "ok") {
- LOG(info, "ping to %s with reverse connectivity OK", _spec.c_str());
+ LOG(debug, "ping to %s with reverse connectivity OK", _spec.c_str());
_result = CcResult::ALL_OK;
} else {
- LOG(warning, "connected to %s, but reverse connectivity fails: %s",
+ LOG(debug, "connected to %s, but reverse connectivity fails: %s",
_spec.c_str(), answer.c_str());
_result = CcResult::REVERSE_FAIL;
}
} else if (req->GetErrorCode() == FRTE_RPC_NO_SUCH_METHOD ||
req->GetErrorCode() == FRTE_RPC_WRONG_PARAMS)
{
- LOG(info, "Connected OK to %s but no reverse connectivity check available", _spec.c_str());
+ LOG(debug, "Connected OK to %s but no reverse connectivity check available", _spec.c_str());
_result = CcResult::REVERSE_UNAVAIL;
} else {
- LOG(warning, "error on request to %s : %s (%d)", _spec.c_str(),
+ LOG(debug, "error on request to %s : %s (%d)", _spec.c_str(),
req->GetErrorMessage(), req->GetErrorCode());
_result = CcResult::CONN_FAIL;