From 18287a60a86228c20b6c6d788e0781588e79c247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Sun, 1 Nov 2020 04:45:06 +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 --- HttpServer/Server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HttpServer/Server.php b/HttpServer/Server.php index c61e8599..55bbab4f 100644 --- a/HttpServer/Server.php +++ b/HttpServer/Server.php @@ -349,7 +349,7 @@ class Server extends Application */ private function onListenerBind($config, $newListener) { - $this->debug(sprintf('Listener %s::%d', $config['host'], $config['port'])); + $this->debug(sprintf('Listener %s::%d -> %s', $config['host'], $config['port'], $config['mode'])); if ($config['type'] == self::HTTP) { $this->onBind($newListener, 'request', [Snowflake::createObject(OnRequest::class), 'onHandler']); } else if ($config['type'] == self::TCP || $config['type'] == self::PACKAGE) {