From a13fc4d346d46ef6f9a9bdcf7e75759e7c223d95 Mon Sep 17 00:00:00 2001 From: wei liu Date: Thu, 28 Dec 2023 17:14:45 +0800 Subject: [PATCH] enhance: Remove useless log in collection observer (#29555) pr: #29554 This PR removed useless log in collection observer Signed-off-by: Wei Liu --- internal/querycoordv2/observers/collection_observer.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/querycoordv2/observers/collection_observer.go b/internal/querycoordv2/observers/collection_observer.go index c8e92b528e..437ff5338e 100644 --- a/internal/querycoordv2/observers/collection_observer.go +++ b/internal/querycoordv2/observers/collection_observer.go @@ -156,9 +156,6 @@ func (ob *CollectionObserver) readyToObserve(collectionID int64) bool { func (ob *CollectionObserver) observeLoadStatus(ctx context.Context) { partitions := ob.meta.CollectionManager.GetAllPartitions() - if len(partitions) > 0 { - log.Info("observe partitions status", zap.Int("partitionNum", len(partitions))) - } loading := false for _, partition := range partitions { if partition.LoadPercentage == 100 {