From e470a98f694ad1b27d3851c582e81be69157db04 Mon Sep 17 00:00:00 2001 From: "Fabian @ Blax Software" Date: Thu, 11 Dec 2025 11:25:47 +0100 Subject: [PATCH] IA logging --- src/Console/Commands/StartServer.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Console/Commands/StartServer.php b/src/Console/Commands/StartServer.php index cf756ce..a50a315 100644 --- a/src/Console/Commands/StartServer.php +++ b/src/Console/Commands/StartServer.php @@ -222,12 +222,14 @@ class StartServer extends Command } $this->loop->addSignal(SIGTERM, function () { + \Log::channel('websocket')->info('Received SIGTERM, closing existing connections...'); $this->line('Closing existing connections...'); $this->triggerSoftShutdown(); }); $this->loop->addSignal(SIGINT, function () { + \Log::channel('websocket')->info('Received SIGINT, closing existing connections...'); $this->line('Closing existing connections...'); $this->triggerSoftShutdown();