]> git.saurik.com Git - redis.git/blobdiff - src/aof.c
JSON support for Lua scripting, based on work from @lp, thanks!. We are using the...
[redis.git] / src / aof.c
index 0dcf905eef99eb2c01cca60ae9b5fd8346163f61..2a2be8961a37f16d76777fff873f828ecbda0cad 100644 (file)
--- a/src/aof.c
+++ b/src/aof.c
@@ -52,7 +52,7 @@ int startAppendOnly(void) {
     if (rewriteAppendOnlyFileBackground() == REDIS_ERR) {
         server.appendonly = 0;
         close(server.appendfd);
-        redisLog(REDIS_WARNING,"Used tried to switch on AOF via CONFIG, I can't trigger a background AOF rewrite operation. Check the above logs for more info about the error.",strerror(errno));
+        redisLog(REDIS_WARNING,"User tried turning on AOF with CONFIG SET but I can't trigger a background AOF rewrite operation. Check the above logs for more info about the error.");
         return REDIS_ERR;
     }
     return REDIS_OK;