From d1cac298c61601449a42b0021b5b860b83c9d8e2 Mon Sep 17 00:00:00 2001 From: Joe Date: Sat, 23 Nov 2024 22:51:48 -0800 Subject: [PATCH] Coment out log statements --- public/scripts/power-user.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/scripts/power-user.js b/public/scripts/power-user.js index 9d6910a3f..8b9e837c2 100644 --- a/public/scripts/power-user.js +++ b/public/scripts/power-user.js @@ -1869,13 +1869,13 @@ function performFuzzySearch(type, data, keys, searchValue) { // Check cache for existing results if (cache.keyHash === currentKeyHash && cache.resultMap.has(searchValue)) { - console.log(`Using cached ${type} fuzzy search results for ${searchValue}`); + // console.debug(`Using cached ${type} fuzzy search results for ${searchValue}`); return cache.resultMap.get(searchValue); } // Clear cache if keys changed if (cache.keyHash !== currentKeyHash) { - console.log(`${type} Fuse keys changed, clearing cache`); + // console.debug(`${type} Fuse keys changed, clearing cache`); cache.keyHash = currentKeyHash; cache.resultMap.clear(); } @@ -1891,7 +1891,7 @@ function performFuzzySearch(type, data, keys, searchValue) { const results = fuse.search(searchValue); cache.resultMap.set(searchValue, results); - console.log(`${type} fuzzy search results for ${searchValue}`, results); + // console.debug(`${type} fuzzy search results for ${searchValue}`, results); return results; }