From 456003af25fc7d78867116749a2014611f3e4f64 Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 17 Oct 2014 17:11:46 +0200 Subject: [PATCH] Diskless replication: less debugging printfs around. --- src/replication.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/replication.c b/src/replication.c index ea8265e38..fa5ed87d7 100644 --- a/src/replication.c +++ b/src/replication.c @@ -888,7 +888,6 @@ void readSyncBulkPayload(aeEventLoop *el, int fd, void *privdata, int mask) { } nread = read(fd,buf,readlen); - printf("NREAD %d (%d)\n", (int)nread, (int)readlen); if (nread <= 0) { redisLog(REDIS_WARNING,"I/O error trying to sync with MASTER: %s", (nread == -1) ? strerror(errno) : "connection lost");