From b1f15fa0e88327b6ba564b74637b36deeabe22b5 Mon Sep 17 00:00:00 2001 From: XuanYang-cn Date: Thu, 23 Nov 2023 19:18:28 +0800 Subject: [PATCH] fix: Ease the log level when sync task done (#28678) Signed-off-by: yangxuan --- internal/datanode/syncmgr/task.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/datanode/syncmgr/task.go b/internal/datanode/syncmgr/task.go index e9b386075e..c97238abab 100644 --- a/internal/datanode/syncmgr/task.go +++ b/internal/datanode/syncmgr/task.go @@ -137,7 +137,7 @@ func (t *SyncTask) Run() error { t.metacache.UpdateSegments(metacache.MergeSegmentAction(actions...), metacache.WithSegmentIDs(t.segmentID)) - log.Warn("task done") + log.Info("task done") return nil }