summaryrefslogtreecommitdiff
path: root/src/cluster.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-03-26 16:35:38 +0100
committerantirez <antirez@gmail.com>2014-03-26 16:35:38 +0100
commit6dd2dbbd367aaa79a0ebb1a73f8cc6815314f163 (patch)
treed7a7a6abfa9bc1533de9605b28438a17be3b1ad4 /src/cluster.c
parent3cf6f1f54fb3a31fb7157ab54919455feda41466 (diff)
downloadredis-6dd2dbbd367aaa79a0ebb1a73f8cc6815314f163.tar.gz
Cluster: handshake "already known" error logged to VERBOSE.
This is not really an error but something that always happens for example when creating a new cluster, or if the sysadmin rejoins manually a node that is already known. Since useless logs don't help, moved to VERBOSE level.
Diffstat (limited to 'src/cluster.c')
-rw-r--r--src/cluster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cluster.c b/src/cluster.c
index f29b8db8d..42ed60986 100644
--- a/src/cluster.c
+++ b/src/cluster.c
@@ -1375,7 +1375,7 @@ int clusterProcessPacket(clusterLink *link) {
/* If we already have this node, try to change the
* IP/port of the node with the new one. */
if (sender) {
- redisLog(REDIS_WARNING,
+ redisLog(REDIS_VERBOSE,
"Handshake: we already know node %.40s, "
"updating the address if needed.", sender->name);
if (nodeUpdateAddressIfNeeded(sender,link,ntohs(hdr->port)))