summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2019-12-11 10:17:23 +0100
committerantirez <antirez@gmail.com>2019-12-11 10:17:23 +0100
commit441cd9713c8cfce01ae90a1f9b603b03af3b8f81 (patch)
treefe9cf46b7f33d1fd7b1a44955515fbde63eb79f5 /src
parent29fddf32918e905453398fafb4433c30f2b4aba3 (diff)
downloadredis-441cd9713c8cfce01ae90a1f9b603b03af3b8f81.tar.gz
Clients connected and bytes used is too spammy for verbose.
This message is there for ten years, but is hardly useful. Moreover it is likely that it will fill an entire disk if log ratation is not configured, for no good reasons.
Diffstat (limited to 'src')
-rw-r--r--src/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.c b/src/server.c
index 72f136446..adb7ce6be 100644
--- a/src/server.c
+++ b/src/server.c
@@ -1942,7 +1942,7 @@ int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) {
/* Show information about connected clients */
if (!server.sentinel_mode) {
run_with_period(5000) {
- serverLog(LL_VERBOSE,
+ serverLog(LL_DEBUG,
"%lu clients connected (%lu replicas), %zu bytes in use",
listLength(server.clients)-listLength(server.slaves),
listLength(server.slaves),