diff --git a/sentinel.conf b/sentinel.conf index bba9b92c2..0f0265c97 100644 --- a/sentinel.conf +++ b/sentinel.conf @@ -19,6 +19,14 @@ daemonize no # location here. pidfile /var/run/redis-sentinel.pid +# Specify the server verbosity level. +# This can be one of: +# debug (a lot of information, useful for development/testing) +# 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 notice + # Specify the log file name. Also the empty string can be used to force # Sentinel to log on the standard output. Note that if you use standard # output for logging but daemonize, logs will be sent to /dev/null diff --git a/src/sentinel.c b/src/sentinel.c index 48369df99..595a12fea 100644 --- a/src/sentinel.c +++ b/src/sentinel.c @@ -3182,7 +3182,17 @@ void sentinelSendPeriodicCommands(sentinelRedisInstance *ri) { /* =========================== SENTINEL command ============================= */ -/* SENTINEL CONFIG SET