ソースを参照

clientareafunctions

andre 3 年 前
コミット
7d1af3fee9
1 ファイル変更9 行追加0 行削除
  1. 9 0
      api/cwp7/Admin.php

+ 9 - 0
api/cwp7/Admin.php

@@ -398,6 +398,15 @@ class cwp7_Admin {
         curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
         curl_setopt($ch, CURLOPT_POST, 1);
         $response = curl_exec($ch);
+
+        logModuleCall(
+            'cwp7',
+            __FUNCTION__,
+            $data,
+            'debug addDomain',
+            $response
+        );
+
         if(curl_getinfo($ch, CURLINFO_RESPONSE_CODE) != 200) {
             curl_close($ch);
             return array('status' => 'Error', 'err_msg' => curl_error($ch));