Remove duplicated log message about starting BGSAVE.

This commit is contained in:
antirez
2014-10-24 10:38:42 +02:00
parent 7e8a471baf
commit 4b520177b3

View File

@ -530,7 +530,6 @@ void syncCommand(redisClient *c) {
redisLog(REDIS_NOTICE,"Delay next BGSAVE for SYNC");
} else {
/* Ok we don't have a BGSAVE in progress, let's start one. */
redisLog(REDIS_NOTICE,"Starting BGSAVE for SYNC");
if (startBgsaveForReplication() != REDIS_OK) {
redisLog(REDIS_NOTICE,"Replication failed, can't BGSAVE");
addReplyError(c,"Unable to perform background save");