mirror of https://github.com/scrapy/scrapy.git
increased log level of "Scraped" message to INFO
--HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%401094
This commit is contained in:
parent
e72bc5918b
commit
78fa0bc2d8
|
|
@ -236,7 +236,7 @@ class ExecutionEngine(object):
|
|||
|
||||
def _onsuccess_per_item(item):
|
||||
if isinstance(item, ScrapedItem):
|
||||
log.msg("Scraped %s in <%s>" % (item, request.url), log.DEBUG, domain=domain)
|
||||
log.msg("Scraped %s in <%s>" % (item, request.url), log.INFO, domain=domain)
|
||||
signals.send_catch_log(signal=signals.item_scraped, sender=self.__class__, item=item, spider=spider, response=response)
|
||||
piped = self.pipeline.pipe(item, spider)
|
||||
piped.addBoth(_onpipelinefinish, item)
|
||||
|
|
|
|||
Loading…
Reference in New Issue