]> git.saurik.com Git - redis.git/commitdiff
default log level is now notice.
authorantirez <antirez@gmail.com>
Wed, 30 Nov 2011 14:04:40 +0000 (15:04 +0100)
committerantirez <antirez@gmail.com>
Wed, 30 Nov 2011 14:04:40 +0000 (15:04 +0100)
redis.conf
src/redis.c

index 592171204fdb127ccb83969dee653d1456026e11..8cea68aa5be3745294353d032d4b5e4cccaf839c 100644 (file)
@@ -45,7 +45,7 @@ timeout 0
 # verbose (many rarely useful info, but not a mess like the debug level)
 # notice (moderately verbose, what you want in production probably)
 # warning (only very important / critical messages are logged)
-loglevel verbose
+loglevel notice
 
 # Specify the log file name. Also 'stdout' can be used to force
 # Redis to log on the standard output. Note that if you use standard
index 75ec0d8120913e967b8787127d974c910054bf92..412acf183ab79c0de7f1d553fb707b8d3d9fc2c9 100644 (file)
@@ -863,7 +863,7 @@ void initServerConfig() {
     server.ipfd = -1;
     server.sofd = -1;
     server.dbnum = REDIS_DEFAULT_DBNUM;
-    server.verbosity = REDIS_VERBOSE;
+    server.verbosity = REDIS_NOTICE;
     server.maxidletime = REDIS_MAXIDLETIME;
     server.client_max_querybuf_len = REDIS_MAX_QUERYBUF_LEN;
     server.saveparams = NULL;