]> git.saurik.com Git - redis.git/commitdiff
Even when loglevel is warning the server should log that it started.
authorantirez <antirez@gmail.com>
Thu, 1 Dec 2011 12:45:19 +0000 (13:45 +0100)
committerantirez <antirez@gmail.com>
Thu, 1 Dec 2011 12:45:19 +0000 (13:45 +0100)
src/redis.c

index 30ba1bce85c7f0af3c3b0d2085fae9f1bcae2a47..839711381e6f107b28dcab5fc1997e080c7a67f3 100644 (file)
@@ -2048,7 +2048,7 @@ int main(int argc, char **argv) {
     initServer();
     if (server.daemonize) createPidFile();
     redisAsciiArt();
-    redisLog(REDIS_NOTICE,"Server started, Redis version " REDIS_VERSION);
+    redisLog(REDIS_WARNING,"Server started, Redis version " REDIS_VERSION);
 #ifdef __linux__
     linuxOvercommitMemoryWarning();
 #endif