Skip to content

Commit

Permalink
refactor: change Initializing the crawler log to `Starting the craw…
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan committed Sep 25, 2023
1 parent ce4792f commit 654c4e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/basic-crawler/src/internals/basic-crawler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ export class BasicCrawler<Context extends CrawlingContext = BasicCrawlingContext
await this._init();
await this.stats.startCapturing();
const periodicLogger = this.getPeriodicLogger();
await this.setStatusMessage(`Initializing the crawler.`, { level: 'INFO' });
await this.setStatusMessage('Starting the crawler.', { level: 'INFO' });

const sigintHandler = async () => {
this.log.warning('Pausing... Press CTRL+C again to force exit. To resume, do: CRAWLEE_PURGE_ON_START=0 npm start');
Expand Down

0 comments on commit 654c4e7

Please sign in to comment.