From 27ccb94a021c74acbdfead03f4bc7f6b9cb8a9ae Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 1 Dec 2011 13:45:19 +0100 Subject: [PATCH] Even when loglevel is warning the server should log that it started. --- src/redis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis.c b/src/redis.c index 30ba1bce..83971138 100644 --- a/src/redis.c +++ b/src/redis.c @@ -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