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 1b76d045bb
commit 069139ce75

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