Browse Source

feat:删除日志

wangshan 2 years ago
parent
commit
6ebe7ecca1

+ 0 - 1
jyBXCore/api/internal/logic/searchListLogic.go

@@ -30,7 +30,6 @@ func NewSearchListLogic(ctx context.Context, svcCtx *svc.ServiceContext, r *http
 
 func (l *SearchListLogic) SearchList(req *types.SearchReq) (resp *types.CommonResp, err error) {
 	t := time.Now()
-	logx.Info("++++++++++++++++:", req.KeyWords)
 	res, err := l.svcCtx.BxCore.GetSearchList(l.ctx, &bxcore.SearchReq{
 		AppId:           req.AppId,
 		UserId:          req.UserId,

+ 0 - 3
jyBXCore/rpc/internal/server/bxcoreserver.go

@@ -5,8 +5,6 @@ package server
 
 import (
 	"context"
-	"github.com/zeromicro/go-zero/core/logx"
-
 	"jyBXCore/rpc/internal/logic"
 	"jyBXCore/rpc/internal/svc"
 	"jyBXCore/rpc/type/bxcore"
@@ -26,7 +24,6 @@ func NewBxCoreServer(svcCtx *svc.ServiceContext) *BxCoreServer {
 // 标讯搜索结果列表数据
 func (s *BxCoreServer) GetSearchList(ctx context.Context, in *bxcore.SearchReq) (*bxcore.SearchResp, error) {
 	l := logic.NewGetSearchListLogic(ctx, s.svcCtx)
-	logx.Info("----------------------------------:", in.KeyWords)
 	return l.GetSearchList(in)
 }