From 2896f5eb69427fcf741e300fbb603e16f456789a Mon Sep 17 00:00:00 2001 From: Xiaofan <83447078+xiaofan-luan@users.noreply.github.com> Date: Fri, 23 Feb 2024 14:10:40 +0800 Subject: [PATCH] enhance: [2.3] change frequent log to debug (#30781) pr: #30782 change the "pipeline fetch insert msg" log to debug Signed-off-by: xiaofanluan --- internal/querynodev2/pipeline/insert_node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/querynodev2/pipeline/insert_node.go b/internal/querynodev2/pipeline/insert_node.go index 16c588bbec..b2b56c8cc5 100644 --- a/internal/querynodev2/pipeline/insert_node.go +++ b/internal/querynodev2/pipeline/insert_node.go @@ -77,7 +77,7 @@ func (iNode *insertNode) addInsertData(insertDatas map[UniqueID]*delegator.Inser iData.PrimaryKeys = append(iData.PrimaryKeys, pks...) iData.RowIDs = append(iData.RowIDs, msg.RowIDs...) iData.Timestamps = append(iData.Timestamps, msg.Timestamps...) - log.Info("pipeline fetch insert msg", + log.Debug("pipeline fetch insert msg", zap.Int64("collectionID", iNode.collectionID), zap.Int64("segmentID", msg.SegmentID), zap.Int("insertRowNum", len(pks)),