Remove debugging output

This commit is contained in:
Marian Steinbach 2019-05-03 22:54:05 +02:00
parent 56f9f1ba86
commit 7621b7ef75
1 changed files with 0 additions and 3 deletions

View File

@ -22,8 +22,6 @@ import tenacity
from checks.abstract_checker import AbstractChecker
from pprint import pprint
class Checker(AbstractChecker):
page_load_timeout = 30
@ -116,7 +114,6 @@ class Checker(AbstractChecker):
try:
results[url]['cookies'] = self.get_cookies()
pprint(results[url]['cookies'])
except TimeoutException as e:
logging.warn("TimeoutException when collecting cookies %s: %s" % (url, e))
pass