Skip to content

Commit b69eae8

Browse files
author
nextcaptcha
committed
log status
1 parent e4fb5c6 commit b69eae8

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

nextcaptcha/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44

55

6-
__version__ = '1.0.5'
6+
__version__ = '1.0.6'

nextcaptcha/next.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,15 @@ def _send(self, task: dict) -> dict:
8282
if self.open_log:
8383
logging.info(f"Task status: {status}")
8484
if status == READY_STATUS:
85-
logging.info(f"Task {task_id} ready {resp.json()}")
85+
if self.open_log:
86+
logging.info(f"Task {task_id} ready {resp.json()}")
8687
return resp.json()
8788
if status == FAILED_STATUS:
88-
logging.error(f"Task {task_id} failed {resp.json()}")
89+
if self.open_log:
90+
logging.error(f"Task {task_id} failed {resp.json()}")
8991
return resp.json()
90-
time.sleep(1)
92+
time.sleep(0.5)
93+
9194

9295

9396
class NextCaptchaAPI:

0 commit comments

Comments
 (0)