Remove debug log with no meaning (#16583)

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

View File

@ -163,7 +163,6 @@ func (nd *etcdShardNodeDetector) handlePutEvent(e *clientv3.Event, collectionID,
return return
} }
if info.CollectionID != collectionID || info.ReplicaID != replicaID { if info.CollectionID != collectionID || info.ReplicaID != replicaID {
log.Warn("here")
return return
} }
if e.PrevKv != nil { if e.PrevKv != nil {

View File

@ -132,7 +132,6 @@ func (sd *etcdShardSegmentDetector) watch(ch clientv3.WatchChan, collectionID in
} }
} }
for _, e := range evt.Events { for _, e := range evt.Events {
log.Debug("segment evt", zap.Any("evt", evt))
switch e.Type { switch e.Type {
case mvccpb.PUT: case mvccpb.PUT:
sd.handlePutEvent(e, collectionID, replicaID, vchannel) sd.handlePutEvent(e, collectionID, replicaID, vchannel)