Redis Cluster: move node failure reports logging from VERBOSE to NOTICE level.

This commit is contained in:
antirez 2013-12-21 00:04:53 +01:00
parent 5a404c87c1
commit 658aff9d29

View File

@ -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);
}