diff --git a/src/replication.c b/src/replication.c index c0018cec84b519a40a7aa23f2a9fbf27ebb4d709..2c99a6624d0ebda29e50ba1a70736b598fa841c8 100644 --- a/src/replication.c +++ b/src/replication.c @@ -1499,7 +1499,8 @@ void replicationCron(void) { /* Check if we should connect to a MASTER */ if (server.repl_state == REDIS_REPL_CONNECT) { - redisLog(REDIS_NOTICE,"Connecting to MASTER..."); + redisLog(REDIS_NOTICE,"Connecting to MASTER %s:%d", + server.masterhost, server.masterport); if (connectWithMaster() == REDIS_OK) { redisLog(REDIS_NOTICE,"MASTER <-> SLAVE sync started"); }