From b4ac5c47585bf9db0854c7a8f4dd05253988360c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Tue, 30 Nov 2021 19:04:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kiri-engine/FileListen/HotReload.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiri-engine/FileListen/HotReload.php b/kiri-engine/FileListen/HotReload.php index abf9d631..25895878 100644 --- a/kiri-engine/FileListen/HotReload.php +++ b/kiri-engine/FileListen/HotReload.php @@ -99,10 +99,10 @@ class HotReload extends Command { $pid = (int)file_get_contents(storage('.swoole.pid')); if (empty($pid)) { - $this->logger->debug('service is shutdown you need reload.'); + $this->logger->warning('service is shutdown you need reload.'); $this->trigger_reload(); } else if (!Process::kill($pid, 0)) { - $this->logger->debug('service is shutdown you need reload.'); + $this->logger->warning('service is shutdown you need reload.'); $this->trigger_reload(); } }