summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-02-11 10:18:24 +0100
committerantirez <antirez@gmail.com>2014-02-11 10:22:05 +0100
commit4513d8fcd4a04e841feeb12735dffd066cd3f64a (patch)
treee9fa177ba4db934b68201cd75a4e23dda6c891f7 /src
parent972125517874cb0fb4f26732361d2611d47f814d (diff)
downloadredis-4513d8fcd4a04e841feeb12735dffd066cd3f64a.tar.gz
Cluster: UPDATE messages are the norm and verbose.
Logging them at WARNING level was of little utility and of sure disturb.
Diffstat (limited to 'src')
-rw-r--r--src/cluster.c2
1 files changed, 1 insertions, 1 deletions
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);