cqp 1 месяц назад
Родитель
Сommit
d7143c2836
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      app/Service/DaHuangFengService.php

+ 2 - 2
app/Service/DaHuangFengService.php

@@ -112,7 +112,7 @@ class DaHuangFengService extends Service
     public function post_big($url, $data, $timeout = 20){
         $header = array("Content-type:application/json;charset='utf-8'");
 
-        Log::channel('apiLog')->info('bigPOST', ["api" => $url , "param" => $data ,"header" => $header]);
+//        Log::channel('apiLog')->info('bigPOST', ["api" => $url , "param" => $data ,"header" => $header]);
         $ch = curl_init();
         curl_setopt($ch, CURLOPT_URL, $url);
         curl_setopt($ch,  CURLOPT_RETURNTRANSFER, true);
@@ -138,7 +138,7 @@ class DaHuangFengService extends Service
         }
         curl_close($ch);
 
-        Log::channel('apiLog')->info('bigPOST结果', ["message" => json_decode($r, true)]);
+//        Log::channel('apiLog')->info('bigPOST结果', ["message" => json_decode($r, true)]);
 
         return [true, json_decode($r, true)];
     }