Remove debug code

This commit is contained in:
Dan Q 2023-09-28 17:10:22 +01:00
parent b70d60414a
commit 4742270522
1 changed files with 0 additions and 1 deletions

View File

@ -31,7 +31,6 @@ const maxFetchCacheSize = 100;
const fetchCache = new Map();
function maybePruneFetchCache() {
console.log(fetchCache.size);
while ( fetchCache.size > maxFetchCacheSize ) {
fetchCache.delete( fetchCache.keys().next().value );
}