liuzejian hace 1 año
padre
commit
b4e8d8508d
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. 6 1
      app/Jobs/Video/WechatCheck.php

+ 6 - 1
app/Jobs/Video/WechatCheck.php

@@ -2,6 +2,7 @@
 
 namespace App\Jobs\Video;
 
+use App\Service\Util\Support\Trace\TraceContext;
 use Illuminate\Bus\Queueable;
 use Illuminate\Contracts\Queue\ShouldBeUnique;
 use Illuminate\Contracts\Queue\ShouldQueue;
@@ -27,6 +28,10 @@ class WechatCheck implements ShouldQueue
      */
     public function handle(): void
     {
-        //
+        myLog('wechatCheck')->info('开始处理微信提审', [
+            'info' => $this->info
+        ]);
+        $traceContext = TraceContext::newFromParent($this->info['traceInfo']);
+
     }
 }