We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f91d6f commit 30cbde1Copy full SHA for 30cbde1
1 file changed
src/crawler.ts
@@ -2307,12 +2307,14 @@ self.__bx_behaviors.selectMainBehavior();
2307
const crawled = await this.crawlState.numDone();
2308
const failed = await this.crawlState.numFailed();
2309
const total = await this.crawlState.numFound();
2310
+ const excluded = await this.crawlState.numExcluded();
2311
const limit = { max: this.pageLimit || 0, hit: this.limitHit };
2312
const stats = {
2313
crawled,
2314
total,
2315
pending,
2316
failed,
2317
+ excluded,
2318
limit,
2319
pendingPages,
2320
};
0 commit comments