Add google analytics #38

Merged
bilal.catic merged 4 commits from add-google-analytics into master 2019-10-10 10:35:17 +02:00
2 changed files with 0 additions and 4 deletions
Showing only changes of commit 0818fcecd2 - Show all commits

View File

@@ -10,8 +10,6 @@ class PostgresSaver {
}
async save(results) {
console.log("[POSTGRES] Saving...");
const savedRecords = await bulkUpsertRealEstates(results);
if (Array.isArray(savedRecords)) {

View File

@@ -55,7 +55,6 @@ class OlxCrawler {
}
async crawl() {
console.log("[OLX] Crawler started");
const crawlAdCategories = this.crawlerAdCategories;
const newRealEstates = [];
@@ -123,7 +122,6 @@ class OlxCrawler {
await this.sleep(this.delayBetweenPages);
}
}
console.log("[OLX] Crawler finished");
return newRealEstates;
}