mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
log change
This commit is contained in:
parent
26f0234e3d
commit
ea5e69e26d
@ -59,7 +59,7 @@ func (s *friendServer) ImportFriend(ctx context.Context, req *pbFriend.ImportFri
|
|||||||
//Parse token, to find current user information
|
//Parse token, to find current user information
|
||||||
claims, err := utils.ParseToken(req.Token)
|
claims, err := utils.ParseToken(req.Token)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error(req.Token, req.OperationID, "err=%s,parse token failed", err.Error())
|
log.NewError(req.OperationID, "parse token failed", err.Error())
|
||||||
c.ErrorCode = config.ErrAddFriend.ErrCode
|
c.ErrorCode = config.ErrAddFriend.ErrCode
|
||||||
c.ErrorMsg = config.ErrParseToken.ErrMsg
|
c.ErrorMsg = config.ErrParseToken.ErrMsg
|
||||||
return &pbFriend.ImportFriendResp{CommonResp: &c, FailedUidList: req.UidList}, nil
|
return &pbFriend.ImportFriendResp{CommonResp: &c, FailedUidList: req.UidList}, nil
|
||||||
@ -72,7 +72,7 @@ func (s *friendServer) ImportFriend(ctx context.Context, req *pbFriend.ImportFri
|
|||||||
return &pbFriend.ImportFriendResp{CommonResp: &c, FailedUidList: req.UidList}, nil
|
return &pbFriend.ImportFriendResp{CommonResp: &c, FailedUidList: req.UidList}, nil
|
||||||
}
|
}
|
||||||
if _, err = im_mysql_model.FindUserByUID(req.OwnerUid); err != nil {
|
if _, err = im_mysql_model.FindUserByUID(req.OwnerUid); err != nil {
|
||||||
log.Error(req.Token, req.OperationID, "this user not exists,cant not add friend", req.OwnerUid)
|
log.NewError(req.OperationID, "this user not exists,cant not add friend", req.OwnerUid)
|
||||||
c.ErrorCode = config.ErrAddFriend.ErrCode
|
c.ErrorCode = config.ErrAddFriend.ErrCode
|
||||||
c.ErrorMsg = "this user not exists,cant not add friend"
|
c.ErrorMsg = "this user not exists,cant not add friend"
|
||||||
return &pbFriend.ImportFriendResp{CommonResp: &c, FailedUidList: req.UidList}, nil
|
return &pbFriend.ImportFriendResp{CommonResp: &c, FailedUidList: req.UidList}, nil
|
||||||
|
Loading…
x
Reference in New Issue
Block a user