scrapy-plugins / scrapy-playwright

🎭 Playwright integration for Scrapy
BSD 3-Clause "New" or "Revised" License
992 stars 108 forks source link

How can I shield the debug log or how can I customize the log level ?? #230

Closed sick-pupil closed 1 year ago

sick-pupil commented 1 year ago

When I run my program, there is too many debug log printed out

elacuesta commented 1 year ago

This package uses standard Python logging. Logging can also be configured at the Scrapy level, see the LOG_LEVEL setting and the related command line options.

sick-pupil commented 1 year ago

Thanks