I've followed the official tutoral of Scrapy, it's wonderful!
I'd like to remove all of DEBUG messages from console output. Is there a way?
2013-06-08 14:51:48+0000 [scrapy] DEBUG: Telnet console listening on 0.0.0.0:6029
2013-06-08 14:51:48+0000 [scrapy] DEBUG: Web service listening on 0.0.0.0:6086
tutorial/
scrapy.cfg
tutorial/
__init__.py
items.py
pipelines.py
settings.py
spiders/
__init__.py
...
You need to add the following to your settings.py
document:
LOG_LEVEL = 'INFO'
See the documentation.