From 95acb1cafad4e1047a31e9f893d355795fadcd37 Mon Sep 17 00:00:00 2001 From: Xevion Date: Tue, 31 Dec 2024 19:55:54 -0600 Subject: [PATCH] Remove extra console.log --- src/pages/api/cron/updated.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/pages/api/cron/updated.ts b/src/pages/api/cron/updated.ts index 7b2d26d..b79a0e2 100644 --- a/src/pages/api/cron/updated.ts +++ b/src/pages/api/cron/updated.ts @@ -258,14 +258,6 @@ export default async function handler( // null values are still included in the array, so filter them out. .filter((project) => project !== null); - // Log the date_updated for each project - eligibleProjects.forEach((project) => { - console.log({ - name: project.name, - date_updated: project.date_updated, - }); - }); - // For each project, query the GitHub API for the latest commit date on all branches. const projectPromises = eligibleProjects.map((project) => handleProject({