This commit is contained in:
Gordon 2023-03-22 20:24:13 +08:00
parent 77a9fad102
commit 56cd2b0a46

View File

@ -4,6 +4,7 @@ import (
"context" "context"
"errors" "errors"
"fmt" "fmt"
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/log"
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/sdkws" "github.com/OpenIMSDK/Open-IM-Server/pkg/proto/sdkws"
"github.com/OpenIMSDK/Open-IM-Server/pkg/utils" "github.com/OpenIMSDK/Open-IM-Server/pkg/utils"
"runtime/debug" "runtime/debug"
@ -127,6 +128,8 @@ func (c *Client) handleMessage(message []byte) error {
switch binaryReq.ReqIdentifier { switch binaryReq.ReqIdentifier {
case WSGetNewestSeq: case WSGetNewestSeq:
resp, messageErr = c.longConnServer.GetSeq(ctx, binaryReq) resp, messageErr = c.longConnServer.GetSeq(ctx, binaryReq)
log.ZError(ctx, "WSGetNewestSeq", messageErr, "resp", resp)
case WSSendMsg: case WSSendMsg:
resp, messageErr = c.longConnServer.SendMessage(ctx, binaryReq) resp, messageErr = c.longConnServer.SendMessage(ctx, binaryReq)
case WSSendSignalMsg: case WSSendSignalMsg: