Skip to content

Commit

Permalink
Fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
kakajuro committed Sep 11, 2024
1 parent 22dbbf9 commit 918d39d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/util/setTotalSectionsRemoved.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default async function setTotalSectionsRemoved() {
// Aggregate stats excluding some stats
for (const [key, value] of Object.entries(data)) {
if (key === "totalInstalls" || key === "currentUsers"|| key === "removePopups" || key === "removeAdsFromReccomendations" || key === "totalSectionsRemoved") {
console.log("Sucessfully skipped fields while calculating totalSectionsRemoved.")
//console.log("Sucessfully skipped fields while calculating totalSectionsRemoved.")
} else {
totalSectionsCount += parseInt(value);
}
Expand Down

0 comments on commit 918d39d

Please sign in to comment.