Change some log level in the pkg package (#28181)

Signed-off-by: SimFG <bang.fu@zilliz.com>
pull/28288/head
SimFG 2023-11-08 23:34:22 +08:00 committed by GitHub
parent cd294056fc
commit 7dda2e8814
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -247,7 +247,7 @@ func (m *Manager) pullSourceConfigs(source string) error {
configs, err := configSource.GetConfigurations()
if err != nil {
log.Error("Get configuration by items failed", zap.Error(err))
log.Info("Get configuration by items failed", zap.Error(err))
return err
}

View File

@ -63,7 +63,7 @@ func (r *refresher) refreshPeriodically(name string) {
defer r.wg.Done()
ticker := time.NewTicker(r.refreshInterval)
defer ticker.Stop()
log.Info("start refreshing configurations", zap.String("source", name))
log.Debug("start refreshing configurations", zap.String("source", name))
for {
select {
case <-ticker.C:

View File

@ -2550,7 +2550,7 @@ func (p *dataNodeConfig) init(base *BaseTable) {
DefaultValue: "0.5",
}
} else {
log.Warn("DeployModeEnv is not set, use default", zap.Float64("default", 0.5))
log.Info("DeployModeEnv is not set, use default", zap.Float64("default", 0.5))
p.MemoryWatermark = ParamItem{
Key: "datanode.memory.watermarkCluster",
Version: "2.2.4",