mirror of
https://github.com/fluencelabs/redis
synced 2025-04-02 07:41:04 +00:00
default log level is now notice.
This commit is contained in:
parent
38b957d8ba
commit
c6f9ee88fa
@ -45,7 +45,7 @@ timeout 0
|
|||||||
# verbose (many rarely useful info, but not a mess like the debug level)
|
# verbose (many rarely useful info, but not a mess like the debug level)
|
||||||
# notice (moderately verbose, what you want in production probably)
|
# notice (moderately verbose, what you want in production probably)
|
||||||
# warning (only very important / critical messages are logged)
|
# warning (only very important / critical messages are logged)
|
||||||
loglevel verbose
|
loglevel notice
|
||||||
|
|
||||||
# Specify the log file name. Also 'stdout' can be used to force
|
# 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
|
# Redis to log on the standard output. Note that if you use standard
|
||||||
|
@ -863,7 +863,7 @@ void initServerConfig() {
|
|||||||
server.ipfd = -1;
|
server.ipfd = -1;
|
||||||
server.sofd = -1;
|
server.sofd = -1;
|
||||||
server.dbnum = REDIS_DEFAULT_DBNUM;
|
server.dbnum = REDIS_DEFAULT_DBNUM;
|
||||||
server.verbosity = REDIS_VERBOSE;
|
server.verbosity = REDIS_NOTICE;
|
||||||
server.maxidletime = REDIS_MAXIDLETIME;
|
server.maxidletime = REDIS_MAXIDLETIME;
|
||||||
server.client_max_querybuf_len = REDIS_MAX_QUERYBUF_LEN;
|
server.client_max_querybuf_len = REDIS_MAX_QUERYBUF_LEN;
|
||||||
server.saveparams = NULL;
|
server.saveparams = NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user