diff --git a/src/kijiji.ts b/src/kijiji.ts index ad7dd20..d7b0158 100644 --- a/src/kijiji.ts +++ b/src/kijiji.ts @@ -142,7 +142,7 @@ async function fetchHtml( for (let attempt = 0; attempt <= maxRetries; attempt++) { try { - console.log(`Fetching: `, url); + // console.log(`Fetching: `, url); const res = await fetch(url, { method: "GET", 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; }