diff --git a/src/cluster.c b/src/cluster.c index 4e3cf746..d7e76ed4 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -994,7 +994,6 @@ int clusterNodeGetSlotBit(clusterNode *n, int slot) { int clusterAddSlot(clusterNode *n, int slot) { redisAssert(clusterNodeSetSlotBit(n,slot) == 0); server.cluster.slots[slot] = n; - printf("SLOT %d added to %.40s\n", slot, n->name); return REDIS_OK; }