diff --git a/business/jxutils/smsmsg/smsmsg.go b/business/jxutils/smsmsg/smsmsg.go index bbe7e75d0..4fbf450d1 100644 --- a/business/jxutils/smsmsg/smsmsg.go +++ b/business/jxutils/smsmsg/smsmsg.go @@ -71,6 +71,8 @@ func SendVoiceMsg(mobileList []string, templateParam map[string]interface{}) (er if *res.Body.Code != "OK" { globals.SugarLogger.Debugf("SendVoiceMsg mobileNum:%s failed with response:%s", mobileNum, utils.Format4Output(res, true)) errList.AddErr(fmt.Errorf(*res.Body.Message)) + } else { + globals.SugarLogger.Debugf("SendVoiceMsg mobileNum:%s success with response:%s", mobileNum, utils.Format4Output(res, true)) } } }