fix: gitignore log level
This commit is contained in:
parent
acea803d8f
commit
9d4356c5f5
|
@ -2,3 +2,4 @@ dbs/*
|
||||||
venv/*
|
venv/*
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyc
|
*.pyc
|
||||||
|
twistd.pid
|
|
@ -1,3 +1,4 @@
|
||||||
scrapy==2.8.0
|
scrapy==2.8.0
|
||||||
scrapyd==1.4.1
|
scrapyd==1.4.1
|
||||||
scrapyd-client==1.2.3
|
scrapyd-client==1.2.3
|
||||||
|
html2text==2020.1.16
|
|
@ -91,6 +91,7 @@ ROBOTSTXT_OBEY = True
|
||||||
REQUEST_FINGERPRINTER_IMPLEMENTATION = "2.7"
|
REQUEST_FINGERPRINTER_IMPLEMENTATION = "2.7"
|
||||||
TWISTED_REACTOR = "twisted.internet.asyncioreactor.AsyncioSelectorReactor"
|
TWISTED_REACTOR = "twisted.internet.asyncioreactor.AsyncioSelectorReactor"
|
||||||
FEED_EXPORT_ENCODING = "utf-8"
|
FEED_EXPORT_ENCODING = "utf-8"
|
||||||
|
LOG_LEVEL = 'INFO'
|
||||||
|
|
||||||
ITEM_PIPELINES = {
|
ITEM_PIPELINES = {
|
||||||
'zcspider.pipelines.ZcspiderPipeline': 300,
|
'zcspider.pipelines.ZcspiderPipeline': 300,
|
||||||
|
|
Loading…
Reference in New Issue