修改log

This commit is contained in:
by 2024-09-03 17:15:05 +08:00
parent 89aefd480a
commit d16c1a1887
1 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,6 @@
package base
import (
"fmt"
"mongo.games.com/game/common"
"mongo.games.com/game/protocol/machine"
"mongo.games.com/goserver/core/logger"
@ -32,7 +31,7 @@ func (this *SrvSessMgr) OnRegiste(s *netlib.Session) {
} else if srvInfo.GetType() == 10 {
logger.Logger.Warn("(this *SrvSessMgr) OnRegiste (Machine):", s)
s.Send(int(machine.DollMachinePacketID_PACKET_SMGameLinkSucceed), &machine.SMGameLinkSucceed{})
fmt.Printf("与娃娃机服务器连接成功\n")
logger.Logger.Info("与娃娃机服务器连接成功\n")
}
}
}