Commit afd6c275 by 丁铜欣

微诺付

1 parent ec0fa8d7
...@@ -84,10 +84,6 @@ abstract class WNFBaseStrategy implements BaseStrategy ...@@ -84,10 +84,6 @@ abstract class WNFBaseStrategy implements BaseStrategy
$this->reqData->setSign(); $this->reqData->setSign();
$body = $this->reqData->getData(); $body = $this->reqData->getData();
debug([
'title'=>'请求参数',
'body' => $body
]);
$ret = $this->sendReq($body); $ret = $this->sendReq($body);
return $this->retData($ret); return $this->retData($ret);
......
...@@ -237,13 +237,6 @@ class Curl ...@@ -237,13 +237,6 @@ class Curl
// 检查错误 // 检查错误
$errno = curl_errno($ch); $errno = curl_errno($ch);
debug([
'title' => '结果',
'body' => $body,
'http_code' => $info['http_code'],
'errno' => $errno,
'post' => json_encode($this->postFieldsBuild($this->post))
]);
if ($errno === 0 && $info['http_code'] >= 400) { if ($errno === 0 && $info['http_code'] >= 400) {
$errno = $info['http_code']; $errno = $info['http_code'];
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!