Open harbachonak opened 1 year ago
@harbachonak Did you find a solution for this? I am trying to do the same.
@harbachonak you can set the log level when creating the object. Something like this,
from icrawler.builtin import GoogleImageCrawler
google_crawler = GoogleImageCrawler(
storage={
'root_dir': '/images'
},
log_level=50,
)
google_crawler.crawl(keyword='cat', max_num=10)
This worked on
icrawler 0.6.7
using python3.10
.
Hope this helps.
Hey!
I'm using GoogleImageCrawler and trying to turn the INFO logs off, so I see only warning and errors in cmd. Am I doing something wrong? Cause INFO logs are still showed. Thanks!