extended-salmon
extended-salmon3y ago

How to disable PlaywrightCrawler request statistics on the console?

I see these messages on the console
INFO Statistics: PlaywrightCrawler request statistics: {"requestAvgFailedDurationMillis":null,
INFO Statistics: PlaywrightCrawler request statistics: {"requestAvgFailedDurationMillis":null,
how can I disable it? P.S. I already have this:
... new PlaywrightCrawler({
autoscaledPoolOptions: {
loggingIntervalSecs: null,
... new PlaywrightCrawler({
autoscaledPoolOptions: {
loggingIntervalSecs: null,
2 Replies
Lukas Krivka
Lukas Krivka3y ago
You can probably make loggingIntervalSecs very high
extended-salmon
extended-salmonOP2y ago
I did this:
loggingIntervalSecs: 9007199254740990,
loggingIntervalSecs: 9007199254740990,
and still I get this:
INFO Statistics: PlaywrightCrawler request statistics: {"requestAvgFailedDurationMillis":null,"requestAvgFinishedDurationMillis":null,"requestsFinishedPerMinute":0,"requestsFailedPerMinute":0,"requestTotalDurationMillis":0,"requestsTotal":0,"crawlerRuntimeMillis":60629,"retryHistogram":[]}
INFO Statistics: PlaywrightCrawler request statistics: {"requestAvgFailedDurationMillis":null,"requestAvgFinishedDurationMillis":null,"requestsFinishedPerMinute":0,"requestsFailedPerMinute":0,"requestTotalDurationMillis":0,"requestsTotal":0,"crawlerRuntimeMillis":60629,"retryHistogram":[]}
I still want to disable it... This topic is almost year old... still have this statistics in log files... I want to turn it off, pls help! tried loggingIntervalSecs: 3600 which is 1 hour and still get it every minute...

Did you find this page helpful?