Commit 441cd971 authored by antirez's avatar antirez
Browse files

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.
parent 29fddf32
...@@ -1942,7 +1942,7 @@ int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) { ...@@ -1942,7 +1942,7 @@ int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) {
/* Show information about connected clients */ /* Show information about connected clients */
if (!server.sentinel_mode) { if (!server.sentinel_mode) {
run_with_period(5000) { run_with_period(5000) {
serverLog(LL_VERBOSE, serverLog(LL_DEBUG,
"%lu clients connected (%lu replicas), %zu bytes in use", "%lu clients connected (%lu replicas), %zu bytes in use",
listLength(server.clients)-listLength(server.slaves), listLength(server.clients)-listLength(server.slaves),
listLength(server.slaves), listLength(server.slaves),
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment