From c26783c8773da866a3e5f9797e6e6f1884bf450b Mon Sep 17 00:00:00 2001 From: liwei1dao Date: Tue, 19 Dec 2023 13:55:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=97=A5=E5=BF=97=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/buried/module.go | 4 ++-- modules/tools/comp_configure.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/buried/module.go b/modules/buried/module.go index eb35ecc91..65ef01481 100644 --- a/modules/buried/module.go +++ b/modules/buried/module.go @@ -675,11 +675,11 @@ func (this *Buried) trigger(session comm.IUserSession, burieds ...*pb.BuriedPara if len(notify) > 0 { for k, v := range notify { if module, err = this.service.GetModule(core.M_Modules(k)); err != nil { - this.Error("通知条件变化异常 目标模块未找到!", log.Field{Key: "module", Value: k}, log.Field{Key: "err", Value: err.Error()}) + this.Warn("通知条件变化异常 目标模块未找到!", log.Field{Key: "module", Value: k}, log.Field{Key: "err", Value: err.Error()}) continue } if nmodule, ok = module.(comm.IBuriedUpdateNotify); !ok { - this.Error("通知条件变化异常 目标模块未实现 IBuriedUpdateNotify 接口 !", log.Field{Key: "module", Value: k}) + this.Warn("通知条件变化异常 目标模块未实现 IBuriedUpdateNotify 接口 !", log.Field{Key: "module", Value: k}) continue } //异步通知指定模块 diff --git a/modules/tools/comp_configure.go b/modules/tools/comp_configure.go index a2901e654..cc50b8ebd 100644 --- a/modules/tools/comp_configure.go +++ b/modules/tools/comp_configure.go @@ -175,7 +175,7 @@ func (this *MCompConfigure) GetGroupDataByLottery(lotteryId int32, vipLv int32, defer this.hlock.RUnlock() if _, ok := this._lotteryType1[lotteryId]; !ok { if _, ok := this._lotteryType2[lotteryId]; !ok { - this.module.Debugf("not found config lotterId:%d", lotteryId) + this.module.Warnf("not found config lotterId:%d", lotteryId) return } }