fix: Change finish log level to info (#30031)

Signed-off-by: yangxuan <xuan.yang@zilliz.com>
pull/30015/head
XuanYang-cn 2024-01-17 10:12:55 +08:00 committed by GitHub
parent 7f059b1025
commit ad7a0b4091
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ func (t *levelZeroCompactionTask) compact() (*datapb.CompactionPlanResult, error
log.Warn("Linear L0 compaction upload all buffer fail", zap.Error(err))
return nil, err
}
log.Warn("Linear L0 compaction finished", zap.Duration("elapse", t.tr.RecordSpan()))
log.Info("Linear L0 compaction finished", zap.Duration("elapse", t.tr.RecordSpan()))
return lo.Values(resultSegments), nil
}