Add console log for first run completion in price comparison function to enhance debugging and monitoring.

This commit is contained in:
Norbert Maciaszek
2025-11-20 20:02:18 +01:00
parent bf60325fac
commit a25ab727b9

View File

@@ -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;
}