diff --git a/pkg/rpcclient/conversation.go b/pkg/rpcclient/conversation.go index 1a2e23818..11313b7ec 100644 --- a/pkg/rpcclient/conversation.go +++ b/pkg/rpcclient/conversation.go @@ -2,6 +2,7 @@ package rpcclient import ( "context" + "github.com/OpenIMSDK/Open-IM-Server/pkg/common/log" "github.com/OpenIMSDK/Open-IM-Server/pkg/common/config" discoveryRegistry "github.com/OpenIMSDK/Open-IM-Server/pkg/discoveryregistry" @@ -30,10 +31,12 @@ func (c *ConversationClient) GetSingleConversationRecvMsgOpt(ctx context.Context var req pbConversation.GetConversationReq req.OwnerUserID = userID req.ConversationID = conversationID + log.ZDebug(ctx, "GetSingleConversationRecvMsgOpt start", "req", req) conversation, err := pbConversation.NewConversationClient(c.conn).GetConversation(ctx, &req) if err != nil { return 0, err } + log.ZDebug(ctx, "GetSingleConversationRecvMsgOpt end", "req", req) return conversation.GetConversation().RecvMsgOpt, err }