diff --git a/wchat/common/HttpClient.php b/wchat/common/HttpClient.php index a9623bf..c045a7e 100644 --- a/wchat/common/HttpClient.php +++ b/wchat/common/HttpClient.php @@ -403,7 +403,6 @@ class HttpClient if (!empty($this->port) && $this->checkIsIp($this->host)) { $this->host .= ':' . $this->port; } - var_dump('https://' . $this->host . '/' . $url); if ($this->isSSL) { return $this->curl('https://' . $this->host . '/' . $url, $data); } else { @@ -629,6 +628,7 @@ class HttpClient private function curl($url, $data = []) { try { + var_dump($url); $output = $this->curlParse($url, $data); if ($output === FALSE) { return new Result(['code' => 500, 'message' => $output]);