laowu 1 주 전
부모
커밋
942b64874f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      app/Services/PayPlus.php

+ 2 - 1
app/Services/PayPlus.php

@@ -172,9 +172,10 @@ class PayPlus
             $encrypted['body'],
             $this->buildPayinHeaders()
         );
+        
 
         $decoded = json_decode($response, true) ?: [];
-
+        Util::WriteLog('PayPlus', 'PayPlus raw response: ' . $decoded);
         return $this->decryptPayinResponse($decoded, $encrypted['aes_key'], $encrypted['iv']);
     }