mirror of https://github.com/scrapy/scrapy.git
Reduce logging level of bad URL
This commit is contained in:
parent
4043560547
commit
c9a5934494
|
|
@ -94,7 +94,7 @@ class LxmlParserLinkExtractor:
|
|||
try:
|
||||
url = safe_url_string(url, encoding=response_encoding)
|
||||
except ValueError:
|
||||
logger.error(f"Skipping extraction of bad link {url}")
|
||||
logger.debug(f"Skipping extraction of bad link {url}")
|
||||
continue # Disregard badly formatted urls
|
||||
|
||||
# to fix relative links after process_value
|
||||
|
|
|
|||
Loading…
Reference in New Issue