mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for system loggeR
This commit is contained in:
parent
17482da60f
commit
540e382bd1
@ -176,7 +176,7 @@ class MolliePaymentDriver extends BaseDriver
|
||||
SystemLog::EVENT_GATEWAY_FAILURE,
|
||||
SystemLog::TYPE_MOLLIE,
|
||||
$this->client,
|
||||
$this->client->companyk
|
||||
$this->client->company
|
||||
);
|
||||
|
||||
nlog($e->getMessage());
|
||||
@ -239,7 +239,8 @@ class MolliePaymentDriver extends BaseDriver
|
||||
SystemLog::CATEGORY_GATEWAY_RESPONSE,
|
||||
SystemLog::EVENT_GATEWAY_SUCCESS,
|
||||
SystemLog::TYPE_MOLLIE,
|
||||
$this->client
|
||||
$this->client,
|
||||
$this->client->company
|
||||
);
|
||||
|
||||
return $payment;
|
||||
@ -259,7 +260,8 @@ class MolliePaymentDriver extends BaseDriver
|
||||
SystemLog::CATEGORY_GATEWAY_RESPONSE,
|
||||
SystemLog::EVENT_GATEWAY_FAILURE,
|
||||
SystemLog::TYPE_CHECKOUT,
|
||||
$this->client
|
||||
$this->client,
|
||||
$this->client->company
|
||||
);
|
||||
|
||||
return false;
|
||||
@ -331,7 +333,8 @@ class MolliePaymentDriver extends BaseDriver
|
||||
SystemLog::CATEGORY_GATEWAY_RESPONSE,
|
||||
$response,
|
||||
SystemLog::TYPE_MOLLIE,
|
||||
$client
|
||||
$client,
|
||||
$client->company
|
||||
);
|
||||
|
||||
return response()->json([], 200);
|
||||
|
Loading…
x
Reference in New Issue
Block a user