From a88680a386b54d603ea3152005e33532a207b8a2 Mon Sep 17 00:00:00 2001 From: MahnoKropotkinvich Date: Tue, 24 Dec 2024 00:16:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E4=BA=86=E4=B8=80=E4=BA=9B?= =?UTF-8?q?=E5=B0=8F=E7=BC=96=E7=A0=81=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fsm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsm.go b/fsm.go index c30a342..35f8485 100644 --- a/fsm.go +++ b/fsm.go @@ -76,7 +76,7 @@ func handleRunningToWaiting() { // TODO: work with daemon func handleWaitingToStopping() { - GetLogger().Infof("Server is currently at %s state", stateToStr[STOPPED]) + GetLogger().Infof("Server is currently at %s state", stateToStr[STOPPING]) go stoppingThread() state = STOPPING }