From a3c9d369022e744848d3ac8c74a25d34c82eb349 Mon Sep 17 00:00:00 2001 From: "iVampireSP.com" Date: Tue, 8 Nov 2022 21:00:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E6=8F=90=E9=86=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Jobs/CheckHostIfExistsOnModule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/CheckHostIfExistsOnModule.php b/app/Jobs/CheckHostIfExistsOnModule.php index a802c1a..9a766e6 100644 --- a/app/Jobs/CheckHostIfExistsOnModule.php +++ b/app/Jobs/CheckHostIfExistsOnModule.php @@ -42,7 +42,7 @@ public function handle() $response = $http->get('hosts/' . $host->id); if ($response->status() === 404) { - // Log::debug($host->module->name . ' ' . $host->name . ' ' . $host->id . ' 不存在,删除'); + Log::warning($host->module->name . ' ' . $host->name . ' ' . $host->id . ' 不存在,删除。'); dispatch(new \App\Jobs\Remote\Host($host, 'delete')); } }