Remove debug code

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

View File

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