Skip to content

Commit

Permalink
Replaced string with mixed type in amazon login pay logs
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCartpenter committed May 11, 2024
1 parent 34b2d74 commit e6ff8cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload/admin/model/extension/payment/amazon_login_pay.php
Original file line number Diff line number Diff line change
Expand Up @@ -727,11 +727,11 @@ private function urlencode(string $value): string {
/**
* Logger
*
* @param string $message
* @param mixed $message
*
* @return void
*/
public function logger(string $message): void {
public function logger($message): void {
if ($this->config->get('payment_amazon_login_pay_debug') == 1) {
$log = new \Log('amazon_login_pay_admin.log');

Expand Down

0 comments on commit e6ff8cd

Please sign in to comment.