From 7957c676040df062c0ec235fcad9c3ae4437638c Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 24 Jan 2012 12:03:48 +0100 Subject: [PATCH] after all closing a client for output buffer limit overcoming is a WARNING level message. --- src/networking.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/networking.c b/src/networking.c index d5b8224e..b098b490 100644 --- a/src/networking.c +++ b/src/networking.c @@ -1294,7 +1294,7 @@ void asyncCloseClientOnOutputBufferLimitReached(redisClient *c) { sds client = getClientInfoString(c); freeClientAsync(c); - redisLog(REDIS_NOTICE,"Client %s scheduled to be closed ASAP for overcoming of output buffer limits.", client); + redisLog(REDIS_WARNING,"Client %s scheduled to be closed ASAP for overcoming of output buffer limits.", client); sdsfree(client); } }