disk store logged messages improved

This commit is contained in:
antirez
2010-12-29 23:08:18 +01:00
parent ddbc81af33
commit 67b0b41c87
4 changed files with 8 additions and 3 deletions

View File

@ -1494,7 +1494,7 @@ int main(int argc, char **argv) {
#endif
start = time(NULL);
if (server.ds_enabled) {
redisLog(REDIS_NOTICE,"Running with disk back end");
redisLog(REDIS_NOTICE,"DB not loaded (running with disk back end)");
} else if (server.appendonly) {
if (loadAppendOnlyFile(server.appendfilename) == REDIS_OK)
redisLog(REDIS_NOTICE,"DB loaded from append only file: %ld seconds",time(NULL)-start);