summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-10-17 17:11:46 +0200
committerantirez <antirez@gmail.com>2014-10-17 17:11:48 +0200
commit456003af25fc7d78867116749a2014611f3e4f64 (patch)
tree1d8a3af071fb218f98e9531eb3996d40e2022953
parentfd112f52dce71e1ebd3fc3ffe1b7d521c628877e (diff)
downloadredis-456003af25fc7d78867116749a2014611f3e4f64.tar.gz
Diskless replication: less debugging printfs around.
-rw-r--r--src/replication.c1
1 files changed, 0 insertions, 1 deletions
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");