Skip to content

Commit fddfa30

Browse files
committed
log remove
1 parent f6ae96f commit fddfa30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/db/chat_log_model.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ func (d *DataBase) GetMessageList(sourceID string, sessionType, count int, start
266266
} else {
267267
condition = "(send_id = ? OR recv_id = ?) AND status <=? And session_type = ? And send_time " + timeSymbol + " ?"
268268
}
269-
err = utils.Wrap(d.conn.Debug().Where(condition, sourceID, sourceID, constant.MsgStatusSendFailed, sessionType, startTime).
269+
err = utils.Wrap(d.conn.Where(condition, sourceID, sourceID, constant.MsgStatusSendFailed, sessionType, startTime).
270270
Order(timeOrder).Offset(0).Limit(count).Find(&messageList).Error, "GetMessageList failed")
271271
for _, v := range messageList {
272272
v1 := v
@@ -341,7 +341,7 @@ func (d *DataBase) UpdateMsgSenderFaceURL(sendID, faceURL string, sType int) err
341341
func (d *DataBase) UpdateMsgSenderFaceURLAndSenderNickname(sendID, faceURL, nickname string, sessionType int) error {
342342
d.mRWMutex.Lock()
343343
defer d.mRWMutex.Unlock()
344-
return utils.Wrap(d.conn.Debug().Model(LocalChatLog{}).Where(
344+
return utils.Wrap(d.conn.Model(LocalChatLog{}).Where(
345345
"send_id = ? and session_type = ?", sendID, sessionType).Updates(
346346
map[string]interface{}{"sender_face_url": faceURL, "sender_nick_name": nickname}).Error, utils.GetSelfFuncName()+" failed")
347347
}

0 commit comments

Comments
 (0)