- QueryPromotionInfo

This commit is contained in:
gazebo
2018-11-08 11:03:58 +08:00
parent af0896eda9
commit 63f54f1205
4 changed files with 76 additions and 1 deletions

View File

@@ -208,7 +208,7 @@ func genNoPageResultParser(codeKey, msgKey, resultKey, okCode string) func(data
if innerData, ok := data[resultKey]; ok {
return innerData, nil
}
baseapi.SugarLogger.Warnf("genNoPageResultParser resultKey %s can not be found in result:%v", resultKey, data)
baseapi.SugarLogger.Warnf("genNoPageResultParser resultKey %s can not be found in result:%v", resultKey, utils.Format4Output(data, false))
return nil, nil // 容错
// panic(fmt.Sprintf("genNoPageResultParser resultKey %s can not be found in result:%v", resultKey, data))
}