From fe8acd0b301a92a58a2e529564b0030c7458fe49 Mon Sep 17 00:00:00 2001 From: John Sully Date: Thu, 14 May 2020 22:18:29 -0400 Subject: [PATCH] Remove debugging logs Former-commit-id: 407375887429ebd3efd6e21ae58766397d1324d3 --- src/module.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/module.cpp b/src/module.cpp index 60420686e..47809a03a 100644 --- a/src/module.cpp +++ b/src/module.cpp @@ -7765,11 +7765,9 @@ int RM_GetLFU(RedisModuleKey *key, long long *lfu_freq) { *lfu_freq = -1; if (!key->value) return REDISMODULE_ERR; - serverLog(LL_WARNING, "MAXMEMORY_POLICY: %X", g_pserver->maxmemory_policy); if (g_pserver->maxmemory_policy & MAXMEMORY_FLAG_LFU) { *lfu_freq = LFUDecrAndReturn(key->value); - serverLog(LL_WARNING, "lfu_freq: %lld", lfu_freq); } return REDISMODULE_OK; }