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

This commit is contained in:
antirez 2011-12-01 13:45:19 +01:00
parent 67c6f0f630
commit 27ccb94a02

View 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