Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions noisy.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,13 +238,13 @@ def crawl(self):
self._browse_from_links()

except requests.exceptions.RequestException:
logging.warn("Error connecting to root url: {}".format(url))
logging.warning("Error connecting to root url: {}".format(url))

except MemoryError:
logging.warn("Error: content at url: {} is exhausting the memory".format(url))
logging.warning("Error: content at url: {} is exhausting the memory".format(url))

except LocationParseError:
logging.warn("Error encountered during parsing of: {}".format(url))
logging.warning("Error encountered during parsing of: {}".format(url))

except self.CrawlerTimedOut:
logging.info("Timeout has exceeded, exiting")
Expand Down