mirror of
https://github.com/fluencelabs/redis
synced 2025-03-18 16:40:50 +00:00
Redis Cluster: move node failure reports logging from VERBOSE to NOTICE level.
This commit is contained in:
parent
5a404c87c1
commit
658aff9d29
@ -898,14 +898,14 @@ void clusterProcessGossipSection(clusterMsg *hdr, clusterLink *link) {
|
||||
{
|
||||
if (flags & (REDIS_NODE_FAIL|REDIS_NODE_PFAIL)) {
|
||||
if (clusterNodeAddFailureReport(node,sender)) {
|
||||
redisLog(REDIS_NOTICE,
|
||||
redisLog(REDIS_VERBOSE,
|
||||
"Node %.40s reported node %.40s as not reachable.",
|
||||
sender->name, node->name);
|
||||
}
|
||||
markNodeAsFailingIfNeeded(node);
|
||||
} else {
|
||||
if (clusterNodeDelFailureReport(node,sender)) {
|
||||
redisLog(REDIS_NOTICE,
|
||||
redisLog(REDIS_VERBOSE,
|
||||
"Node %.40s reported node %.40s is back online.",
|
||||
sender->name, node->name);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user