after all closing a client for output buffer limit overcoming is a WARNING level message.

This commit is contained in:
antirez 2012-01-24 12:03:48 +01:00
parent c8a607f2b6
commit 7957c67604

View 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);
}
}