From a25ab727b9aafa727ec30fb4e173a636cdd32eb6 Mon Sep 17 00:00:00 2001 From: Norbert Maciaszek Date: Thu, 20 Nov 2025 20:02:18 +0100 Subject: [PATCH] Add console log for first run completion in price comparison function to enhance debugging and monitoring. --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index e26ff5b..58ba2a0 100644 --- a/index.js +++ b/index.js @@ -49,6 +49,7 @@ async function compareAndSave(productsPrice) { for (const product of productsPrice) { sendMessage(`PoczÄ…tkowa cena **${product.name}**: ${product.price}`); } + console.log("First run completed"); isFirstRun = false; }