Skip to content

Commit

Permalink
remove log message
Browse files Browse the repository at this point in the history
  • Loading branch information
muodov committed Dec 5, 2024
1 parent 4569449 commit 72f4b07
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crawlerConductor.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ module.exports = async options => {
// Increase number of listeners so we have at least one listener for each async process
if (numberOfCrawlers > process.getMaxListeners()) {
const maxListeners = (numberOfCrawlers * 4) + 1;
console.log('Setting listeners to', maxListeners);
process.setMaxListeners(maxListeners);
}
log(chalk.cyan(`Number of crawlers: ${numberOfCrawlers}\n`));
Expand Down

0 comments on commit 72f4b07

Please sign in to comment.