This commit is contained in:
2025-11-16 16:48:37 +05:00
parent 7e7d583973
commit a9e5f7ece8
2 changed files with 5 additions and 9 deletions

View File

@@ -62,15 +62,6 @@ class HalkbankOnlinePaymentRepository implements PaymentProviderContract
],
]);
Log::channel('single')
->error('Payment error', [
'response' => [
'title' => 'REGISTER',
'error' => $e->getMessage(),
'file_line' => $e->getFile().':'.$e->getLine(),
],
]);
return new Response(new GuzzleResponse(
503,
['Content-Type' => 'application/json'],

View File

@@ -154,6 +154,11 @@ class OnlinePaymentRepository
{
$this->response = $this->provider->sendRequest();
info([
'response' => $this->response,
'body' => $this->response->body(),
]);
$this->failed = $this->response->failed();
$this->successful = $this->response->successful();