diff --git a/client/homebrew/utils/versionHistory.js b/client/homebrew/utils/versionHistory.js index c70edbe5d..ca47a1964 100644 --- a/client/homebrew/utils/versionHistory.js +++ b/client/homebrew/utils/versionHistory.js @@ -114,7 +114,6 @@ export function versionHistoryGarbageCollection(){ const collectAt = new Date(JSON.parse(localStorage.getItem(key)).expireAt); collectAt.setMinutes(collectAt.getMinutes() + GARBAGE_COLLECT_DELAY); if(new Date() > collectAt){ - console.log('GARBAGE COLLECTION:', key); localStorage.removeItem(key); } });