ajun 5 лет назад
Родитель
Сommit
0a8fe61d17

+ 1 - 0
app/Http/Controllers/api/thirdPart/hengli/PackageController.php

@@ -20,6 +20,7 @@ class PackageController extends WeightBaseController
 
     public function new_(Request $request)
     {
+        app('LogService')->log(__METHOD__, $this->name, "记录上传日志:" . json_encode($request->all()) . '||' , null);
         return $this->new($request);
     }
 

+ 1 - 1
app/Http/Controllers/api/thirdPart/weight/WeightBaseController.php

@@ -30,7 +30,7 @@ class WeightBaseController
 
     public function new(Request $request)
     {
-        app('LogService')->log(__METHOD__, $this->name, "记录上传日志:" . json_encode($request->all()) . '||' , null);
+//        app('LogService')->log(__METHOD__, $this->name, "记录上传日志:" . json_encode($request->all()) . '||' , null);
         $errors = $this->validator($request);
         if(count($errors)){
             return $this->validatorErrors($errors);