Skip to content

Commit 30cbde1

Browse files
committed
log excluded in stats
1 parent 7f91d6f commit 30cbde1

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/crawler.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2307,12 +2307,14 @@ self.__bx_behaviors.selectMainBehavior();
23072307
const crawled = await this.crawlState.numDone();
23082308
const failed = await this.crawlState.numFailed();
23092309
const total = await this.crawlState.numFound();
2310+
const excluded = await this.crawlState.numExcluded();
23102311
const limit = { max: this.pageLimit || 0, hit: this.limitHit };
23112312
const stats = {
23122313
crawled,
23132314
total,
23142315
pending,
23152316
failed,
2317+
excluded,
23162318
limit,
23172319
pendingPages,
23182320
};

0 commit comments

Comments
 (0)