I\'ve decided to use the Python logging module because the messages generated by Twisted on std error is too long, and I want to INFO level meaningful messages such
INFO
It is very easy to redirect output using: scrapy some-scrapy's-args 2>&1 | tee -a logname
scrapy some-scrapy's-args 2>&1 | tee -a logname
This way, all what scrapy ouputs into stdout and stderr, will be redirected to a logname file and also, prited to the screen.