|
@@ -35,7 +35,13 @@ func CreatePosterFromSource(codePage, codeScene, source, version, pars string) (
|
|
|
defer func() {
|
|
|
if err != nil {
|
|
|
global.LOG.Critical(fmt.Sprintf("CreatePosterFromSource: source=%s, pars:%s, errMsg:%s", source, pars, errMsg))
|
|
|
- go alarm_msg.SendAlarmMsg("CreatePosterFromSource生成分享海报失败, Msg:"+errMsg+";Err:"+err.Error(), 2)
|
|
|
+ reqSlice := make([]string, 0)
|
|
|
+ reqSlice = append(reqSlice, fmt.Sprint("CodePage:", codePage, "\n"))
|
|
|
+ reqSlice = append(reqSlice, fmt.Sprint("CodeScene:", codeScene, "\n"))
|
|
|
+ reqSlice = append(reqSlice, fmt.Sprint("Source:", source, "\n"))
|
|
|
+ reqSlice = append(reqSlice, fmt.Sprint("Version:", version, "\n"))
|
|
|
+ reqSlice = append(reqSlice, fmt.Sprint("Pars:", pars, "\n"))
|
|
|
+ go alarm_msg.SendAlarmMsg("CreatePosterFromSource生成分享海报失败, Msg:"+errMsg+";Err:"+err.Error()+"\n;Req:\n"+strings.Join(reqSlice, ";"), 3)
|
|
|
}
|
|
|
}()
|
|
|
if codePage == "" || source == "" || pars == "" {
|