From efbe9ba41a6e582ca2c8c168d7660ee80626c451 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Mon, 16 Jun 2025 17:02:05 -0700 Subject: [PATCH] Update cron.ts --- packages/spike/src/discord/cron.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/spike/src/discord/cron.ts b/packages/spike/src/discord/cron.ts index a7713ba..5b4a4d4 100644 --- a/packages/spike/src/discord/cron.ts +++ b/packages/spike/src/discord/cron.ts @@ -20,8 +20,10 @@ export const runCronJobs = async (client: Client) => { }) if (upcomingReminders.length > 0) { + console.log(`Found ${upcomingReminders.length} upcoming reminders to notify.`) const content = `These reminders are due soon, let them know!: ${JSON.stringify(upcomingReminders)}` + console.log(`🌭`, { content }) const output = await getQuickAIResponse({ instructions: buildInstructions(), input: [{ role: "system", content }],