Commit 27ccb94a authored by antirez's avatar antirez
Browse files

Even when loglevel is warning the server should log that it started.

parent 67c6f0f6
...@@ -2048,7 +2048,7 @@ int main(int argc, char **argv) { ...@@ -2048,7 +2048,7 @@ int main(int argc, char **argv) {
initServer(); initServer();
if (server.daemonize) createPidFile(); if (server.daemonize) createPidFile();
redisAsciiArt(); redisAsciiArt();
redisLog(REDIS_NOTICE,"Server started, Redis version " REDIS_VERSION); redisLog(REDIS_WARNING,"Server started, Redis version " REDIS_VERSION);
#ifdef __linux__ #ifdef __linux__
linuxOvercommitMemoryWarning(); linuxOvercommitMemoryWarning();
#endif #endif
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment