remove some logs

This commit is contained in:
Lei PAN
2022-07-06 18:10:47 +02:00
parent 2a339be86e
commit 50cdafd8a2
+2 -2
View File
@@ -28,7 +28,7 @@ class SolveCaptcha:
if len(data_sitekey) == 1:
key_with_comma = data_sitekey[0].split("=")[-1]
key = key_with_comma.replace("\"", '')
self.logger.info("key is : " + key)
# self.logger.info("key is : " + key)
self.solve_captcha(key, handle_solution_received)
def solve_captcha(self, google_key: str, handle_solution_received):
@@ -50,5 +50,5 @@ class SolveCaptcha:
solution_res = requests.get(url_response)
time.sleep(5)
solution = solution_res.text
print(solution)
self.logger.info(solution)
handle_solution_received(solution.split("|")[-1])