Coment out log statements

d1cac298c61601449a42b0021b5b860b83c9d8e2

Joe <joenunezb@gmail.com>

1 files changed, +3 -3Ignore whitespace
public/scripts/power-user.js+3 -3
@@ -1869,13 +1869,13 @@ function performFuzzySearch(type, data, keys, searchValue) {
18691869
18701870 // Check cache for existing results
18711871 if (cache.keyHash === currentKeyHash && cache.resultMap.has(searchValue)) {
18721872 // console.logdebug(`Using cached ${type} fuzzy search results for ${searchValue}`);
18731873 return cache.resultMap.get(searchValue);
18741874 }
18751875
18761876 // Clear cache if keys changed
18771877 if (cache.keyHash !== currentKeyHash) {
18781878 // console.logdebug(`${type} Fuse keys changed, clearing cache`);
18791879 cache.keyHash = currentKeyHash;
18801880 cache.resultMap.clear();
18811881 }
@@ -1891,7 +1891,7 @@ function performFuzzySearch(type, data, keys, searchValue) {
18911891 const results = fuse.search(searchValue);
18921892 cache.resultMap.set(searchValue, results);
18931893
18941894 // console.logdebug(`${type} fuzzy search results for ${searchValue}`, results);
18951895 return results;
18961896}
18971897