This commit is contained in:
wh_zcy 2023-05-30 17:18:45 +08:00
commit 0e0caaca40
2 changed files with 2 additions and 1 deletions

View File

@ -202,6 +202,7 @@ func (this *Buried) TriggerBuried(uid string, burieds ...*pb.BuriedParam) {
comm.Service_Worker,
string(comm.Rpc_ModuleBuriedTrigger),
pb.Rpc_ModuleBuriedTriggerReq{
Uid: uid,
Burieds: burieds,
},
nil); err != nil {

View File

@ -28,7 +28,7 @@ func (this *Options) GetLog() log.ILogger {
}
func (this *Options) LoadConfig(settings map[string]interface{}) (err error) {
this.Debug = true
this.Debug = false
if settings != nil {
err = mapstructure.Decode(settings, this)
}