mirror of https://github.com/milvus-io/milvus.git
Remove meaningless logs (#20051)
Fixes: #20050 Signed-off-by: yangxuan <xuan.yang@zilliz.com> Signed-off-by: yangxuan <xuan.yang@zilliz.com>pull/20070/head
parent
e54b6181b6
commit
0a2436fbe7
|
@ -986,7 +986,12 @@ func (sc *ShardCluster) Search(ctx context.Context, req *querypb.SearchRequest,
|
|||
|
||||
wg.Wait()
|
||||
if err != nil {
|
||||
log.Error("failed to do search", zap.Any("req", req), zap.Error(err))
|
||||
log.Error("failed to do search",
|
||||
zap.Int64("msgID", req.GetReq().GetBase().GetMsgID()),
|
||||
zap.Int64("sourceID", req.GetReq().GetBase().GetSourceID()),
|
||||
zap.Strings("channels", req.GetDmlChannels()),
|
||||
zap.Int64s("segmentIDs", req.GetSegmentIDs()),
|
||||
zap.Error(err))
|
||||
return nil, err
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue