diff --git a/internal/api/conversation/conversation.go b/internal/api/conversation/conversation.go index d29e47c094bb36769b266777132c83f285caae40..3971fbad7e806395907c61be6b588765b3a08c28 100644 --- a/internal/api/conversation/conversation.go +++ b/internal/api/conversation/conversation.go @@ -90,6 +90,7 @@ func GetReceiveMessageOpt(c *gin.Context) { func SetReceiveMessageOpt(c *gin.Context) { params := api.SetReceiveMessageOptReq{} if err := c.BindJSON(¶ms); err != nil { + log.NewError(params.OperationID, utils.GetSelfFuncName(), "bind json failed", err.Error()) c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": "bind json failed " + err.Error()}) return }