增加打点日志

This commit is contained in:
hahwu 2026-03-06 17:40:13 +08:00
parent ac736dc6bd
commit df883aeea7

View File

@ -530,6 +530,12 @@ func (p *Player) handle(m *msg.Msg) error {
return nil return nil
} }
applyUids, ok := info["apply_uids"].([]int64) applyUids, ok := info["apply_uids"].([]int64)
p.TeLog("login_recive_logout_msg", map[string]interface{}{
"apply_uids": applyUids,
"other_uids": info["other_uids"],
"apply_count": info["apply_count"],
"other_count": info["other_count"],
})
if ok && len(applyUids) > 0 { if ok && len(applyUids) > 0 {
var faceList []int var faceList []int
var name string var name string