From 5e0e03be41e7b07455f9f502fbaaa3dbd9e2daaf Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 11 Feb 2014 10:18:24 +0100 Subject: [PATCH] Cluster: UPDATE messages are the norm and verbose. Logging them at WARNING level was of little utility and of sure disturb. --- src/cluster.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cluster.c b/src/cluster.c index b6562341b..de632c64d 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -1430,7 +1430,7 @@ int clusterProcessPacket(clusterLink *link) { if (server.cluster->slots[j]->configEpoch > senderConfigEpoch) { - redisLog(REDIS_WARNING, + redisLog(REDIS_VERBOSE, "Node %.40s has old slots configuration, sending " "an UPDATE message about %.40s", sender->name, server.cluster->slots[j]->name);