Skip to content

Commit

Permalink
chore: remove console out
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Sep 17, 2024
1 parent 0f9717c commit a0ccbb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dictionaries/npm/scripts/update-npm-package-list.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ async function getPackageInfo(packages, packageName) {
*/
function isStale(info) {
const stale = Date.now() - info.ts > staleEntry - Math.random() * staleDither;
if (stale) {
console.log('Stale: %o', info);
}
// if (stale) {
// console.log('Stale: %o', info);
// }
return stale;
}

Expand Down

0 comments on commit a0ccbb4

Please sign in to comment.