summaryrefslogtreecommitdiff
path: root/redis.conf
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-05-15 10:12:29 +0200
committerantirez <antirez@gmail.com>2013-05-15 10:12:29 +0200
commit310dbba01cf694a13d077a5156be756bba5eac8b (patch)
tree92601b4dab2d90200b1ac7844b79d6a0cb3b976e /redis.conf
parent9e74d216e1385dd7d45880b14c12100599e38cfb (diff)
downloadredis-310dbba01cf694a13d077a5156be756bba5eac8b.tar.gz
Added a define for most configuration defaults.
Also the logfile option was modified to always have an explicit value and to log to stdout when an empty string is used as log file. Previously there was special handling of the string "stdout" that set the logfile to NULL, this always required some special handling.
Diffstat (limited to 'redis.conf')
-rw-r--r--redis.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis.conf b/redis.conf
index fc2e927ae..5a88c3116 100644
--- a/redis.conf
+++ b/redis.conf
@@ -63,10 +63,10 @@ tcp-keepalive 0
# warning (only very important / critical messages are logged)
loglevel notice
-# Specify the log file name. Also 'stdout' can be used to force
+# Specify the log file name. Also the emptry string can be used to force
# Redis to log on the standard output. Note that if you use standard
# output for logging but daemonize, logs will be sent to /dev/null
-logfile stdout
+logfile ""
# To enable logging to the system logger, just set 'syslog-enabled' to yes,
# and optionally update the other syslog parameters to suit your needs.