mirror of
https://github.com/fluencelabs/redis
synced 2025-03-17 16:10:50 +00:00
Preloading messages log level changed from WARNING to DEBUG
This commit is contained in:
parent
4b61ca460c
commit
a07bc92692
@ -932,7 +932,7 @@ int blockClientOnSwappedKeys(redisClient *c, struct redisCommand *cmd) {
|
||||
keyindex = getKeysFromCommand(mcmd,margv,margc,&numkeys,
|
||||
REDIS_GETKEYS_PRELOAD);
|
||||
for (j = 0; j < numkeys; j++) {
|
||||
redisLog(REDIS_WARNING,"Preloading %s",
|
||||
redisLog(REDIS_DEBUG,"Preloading %s",
|
||||
(char*)margv[keyindex[j]]->ptr);
|
||||
waitForSwappedKey(c,margv[keyindex[j]]);
|
||||
}
|
||||
@ -942,7 +942,7 @@ int blockClientOnSwappedKeys(redisClient *c, struct redisCommand *cmd) {
|
||||
keyindex = getKeysFromCommand(cmd,c->argv,c->argc,&numkeys,
|
||||
REDIS_GETKEYS_PRELOAD);
|
||||
for (j = 0; j < numkeys; j++) {
|
||||
redisLog(REDIS_WARNING,"Preloading %s",
|
||||
redisLog(REDIS_DEBUG,"Preloading %s",
|
||||
(char*)c->argv[keyindex[j]]->ptr);
|
||||
waitForSwappedKey(c,c->argv[keyindex[j]]);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user