From 54a94a530847ebd31c6350a6da088f8aeb13b2ff Mon Sep 17 00:00:00 2001 From: chenweijian <820961417@qq.com> Date: Tue, 8 Aug 2023 19:17:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=B8=E6=88=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- domain/cache/game_c/game.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/domain/cache/game_c/game.go b/domain/cache/game_c/game.go index 619ac1f..aa23dbb 100644 --- a/domain/cache/game_c/game.go +++ b/domain/cache/game_c/game.go @@ -3,6 +3,7 @@ package game_c import ( "context" "encoding/json" + "git.hilo.cn/hilo-common/mylogrus" "git.hilo.cn/hilo-common/resource/redisCli" "hilo-group/_const/enum/game_e" "time" @@ -20,6 +21,7 @@ type gameAutoJoinMsg struct { func SetAutoMathEnterRoom(userId uint64, imGroupId, traceId, token, enterType, gameCode, is1V1, gameMode, is1V1Robot string) error { key := game_e.GetAutoMathEnterRoom(userId, imGroupId) + mylogrus.MyLog.Infof("Start1V1AfterEnterRoom is1V1Robot:%d, userId:%d, imGroupId:%v", is1V1Robot, userId, imGroupId) info := gameAutoJoinMsg{traceId, token, enterType, gameCode, is1V1, gameMode, is1V1Robot} data, err := json.Marshal(info) if err != nil { -- 2.22.0