chore: remove redundant logging

Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
This commit is contained in:
2025-09-18 17:11:09 -04:00
parent cb1fb2bae6
commit 3166b5a95f

View File

@@ -142,7 +142,7 @@ async function fetchHtml(
for (let attempt = 0; attempt <= maxRetries; attempt++) { for (let attempt = 0; attempt <= maxRetries; attempt++) {
try { try {
console.log(`Fetching: `, url); // console.log(`Fetching: `, url);
const res = await fetch(url, { const res = await fetch(url, {
method: "GET", method: "GET",
headers: { headers: {
@@ -375,6 +375,6 @@ export default async function fetchKijijiItems(
} }
} }
console.log(`Parsed ${items.length} listings.`); console.log("\n" + `Parsed ${items.length} listings.`);
return items; return items;
} }