From: antirez Date: Tue, 24 Jan 2012 11:03:48 +0000 (+0100) Subject: after all closing a client for output buffer limit overcoming is a WARNING level... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/7957c676040df062c0ec235fcad9c3ae4437638c after all closing a client for output buffer limit overcoming is a WARNING level message. --- 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); } }