enhance: Change ddl log to info (#32838)

/kind improvement

Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
pull/32850/head
yihao.dai 2024-05-08 14:17:50 +08:00 committed by GitHub
parent d6e537c91c
commit a8db16ad4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1397,7 +1397,7 @@ func (m *meta) DropChannelCheckpoint(vChannel string) error {
return err
}
delete(m.channelCPs.checkpoints, vChannel)
log.Debug("DropChannelCheckpoint done", zap.String("vChannel", vChannel))
log.Info("DropChannelCheckpoint done", zap.String("vChannel", vChannel))
return nil
}