上传代码

This commit is contained in:
liwei1dao 2023-05-30 17:17:04 +08:00
parent 7667308a80
commit 9b4a845d29
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)
}