remove unnecessary logs

Former-commit-id: 23f9b584a8e6d082c696b69ff7e1c21e982aae23
This commit is contained in:
John Sully 2019-02-28 13:57:58 -05:00
parent 5c64ba23ca
commit fe6fe08ad1

View File

@ -4068,7 +4068,6 @@ sds genRedisInfoString(char *section) {
bytesToHuman(maxmemory_hmem,server.maxmemory);
if (sections++) info = sdscat(info,"\r\n");
serverLog(LL_WARNING, "OOM max sent used_memory: %zu", zmalloc_used);
info = sdscatprintf(info,
"# Memory\r\n"
"used_memory:%zu\r\n"
@ -4503,7 +4502,6 @@ void infoCommand(client *c) {
return;
}
addReplyBulkSds(c, genRedisInfoString(section));
serverLog(LL_WARNING, "OOM max info command %zu", zmalloc_used_memory());
}
void monitorCommand(client *c) {