]> git.saurik.com Git - redis.git/commitdiff
after all closing a client for output buffer limit overcoming is a WARNING level...
authorantirez <antirez@gmail.com>
Tue, 24 Jan 2012 11:03:48 +0000 (12:03 +0100)
committerantirez <antirez@gmail.com>
Tue, 24 Jan 2012 11:03:48 +0000 (12:03 +0100)
src/networking.c

index d5b8224e15e642c4ce663f416809577e1ba5b911..b098b490e997f119982744e8c1c29a9af1e10fd8 100644 (file)
@@ -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);
     }
 }