Remove debug log in querynode segment/node detector (#16572)

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
congqixia 2022-04-22 11:07:42 +08:00 committed by GitHub
parent a6a3b69d91
commit 6de1d223a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 6 deletions

View File

@ -265,8 +265,5 @@ func (nd *etcdShardNodeDetector) handleDelEvent(e *clientv3.Event, collectionID,
func (nd *etcdShardNodeDetector) parseReplicaInfo(bs []byte) (*milvuspb.ReplicaInfo, error) {
info := &milvuspb.ReplicaInfo{}
err := proto.Unmarshal(bs, info)
if err == nil {
log.Debug("ReplicaInfo", zap.Any("info", info))
}
return info, err
}

View File

@ -193,9 +193,6 @@ func (sd *etcdShardSegmentDetector) handleDelEvent(e *clientv3.Event, collection
func (sd *etcdShardSegmentDetector) parseSegmentInfo(bs []byte) (*querypb.SegmentInfo, error) {
info := &querypb.SegmentInfo{}
err := proto.Unmarshal(bs, info)
if err == nil {
log.Debug("segment info", zap.Any("segmentInfo", info))
}
return info, err
}