Skip to content

Commit

Permalink
Fixed info messages for logging (#10)
Browse files Browse the repository at this point in the history
Cool, tnx!
  • Loading branch information
parpalak authored and Dmitry Gladyshev committed Jul 14, 2019
1 parent 332950b commit d4631de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ public function recognizeRecaptchaV2($googleKey, $pageUrl, $extra = [])
$startTime = time();

while (true) {
$this->getLogger()->info("Waiting {$this->rTimeout} sec.");
$this->getLogger()->info("Waiting {$this->recaptchaRTimeout} sec.");

sleep($this->recaptchaRTimeout);

Expand Down Expand Up @@ -499,7 +499,7 @@ public function recognizeRecaptchaV3($googleKey, $pageUrl, $action, $minScore =
$startTime = time();

while (true) {
$this->getLogger()->info("Waiting {$this->rTimeout} sec.");
$this->getLogger()->info("Waiting {$this->recaptchaRTimeout} sec.");

sleep($this->recaptchaRTimeout);

Expand Down Expand Up @@ -601,7 +601,7 @@ public function recognizeKeyCaptcha(
$startTime = time();

while (true) {
$this->getLogger()->info("Waiting {$this->rTimeout} sec.");
$this->getLogger()->info("Waiting {$this->recaptchaRTimeout} sec.");

sleep($this->recaptchaRTimeout);

Expand Down

0 comments on commit d4631de

Please sign in to comment.