I have multiple different spdiers in a scrapy project. I want to output their logs to different files. Now I have rewritten custom_settings in each scrapy spider,just like the following code
'LOG_STDOUT': True means logging to standard output: that is, not to a log file. Set it to False and Scrapyd will by default write log files to separate files, under the configured logs_dir.
I have multiple different spdiers in a scrapy project. I want to output their logs to different files. Now I have rewritten
custom_settings
in each scrapy spider,just like the following codeIn this way, I can indeed output logs to different files, but I found that scrapyd cannot output all the information, just like the code below
But actually there is a lot of information output to the scrapy log file. What should I do so that I can see all the output in the log in scrapyd?