From f35da7b8ba710599d35f774638c0b7a49c7272f2 Mon Sep 17 00:00:00 2001 From: wangchuxiao Date: Fri, 12 May 2023 20:41:10 +0800 Subject: [PATCH] noti --- internal/rpc/conversation/conversaion.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/rpc/conversation/conversaion.go b/internal/rpc/conversation/conversaion.go index 33a17f12a..ed479e22f 100644 --- a/internal/rpc/conversation/conversaion.go +++ b/internal/rpc/conversation/conversaion.go @@ -10,6 +10,7 @@ import ( "github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/relation" tableRelation "github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/table/relation" "github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/tx" + "github.com/OpenIMSDK/Open-IM-Server/pkg/common/log" "github.com/OpenIMSDK/Open-IM-Server/pkg/discoveryregistry" "github.com/OpenIMSDK/Open-IM-Server/pkg/errs" pbConversation "github.com/OpenIMSDK/Open-IM-Server/pkg/proto/conversation" @@ -219,6 +220,7 @@ func (c *conversationServer) SetConversations(ctx context.Context, req *pbConver return nil, err } for _, ownerUserID := range req.UserIDs { + log.ZDebug(ctx, "set private", "sendID", ownerUserID, "recvID", req.Conversation.UserID) c.conversationNotificationSender.ConversationSetPrivateNotification(ctx, ownerUserID, req.Conversation.UserID, req.Conversation.IsPrivateChat.Value) } }