From 81b6d160ebd0538c13d6d46bfa2382ab5aa9cd3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Mon, 1 Mar 2021 17:23:00 +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 --- System/Abstracts/BaseApplication.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/System/Abstracts/BaseApplication.php b/System/Abstracts/BaseApplication.php index daf92167..141d759c 100644 --- a/System/Abstracts/BaseApplication.php +++ b/System/Abstracts/BaseApplication.php @@ -115,7 +115,7 @@ abstract class BaseApplication extends Service $this->taskNumber = 0; $this->state = 'SWOOLE_WORKER_IDLE'; } - var_dump($this->state); + var_dump($this->taskNumber, $this->state); return $this; } @@ -132,7 +132,7 @@ abstract class BaseApplication extends Service } else { $this->state = 'SWOOLE_WORKER_BUSY'; } - var_dump($this->state); + var_dump($this->taskNumber, $this->state); return $this; }