修正了一些小编码错误

This commit is contained in:
MahnoKropotkinvich 2024-12-24 00:16:38 +08:00
parent a3e34ee9fb
commit a88680a386

2
fsm.go
View File

@ -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
}