fix: change log info to debug for collection ref (#41267)

issue: #41268

Signed-off-by: SpadeA <tangchenjie1210@gmail.com>
pull/41272/head
Spade A 2025-04-14 15:16:30 +08:00 committed by GitHub
parent 1f2077b68f
commit 736512a59e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -230,7 +230,7 @@ func (c *Collection) GetLoadType() querypb.LoadType {
func (c *Collection) Ref(count uint32) uint32 {
refCount := c.refCount.Add(count)
log.Info("collection ref increment",
log.Debug("collection ref increment",
zap.Int64("nodeID", paramtable.GetNodeID()),
zap.Int64("collectionID", c.ID()),
zap.Uint32("refCount", refCount),
@ -240,7 +240,7 @@ func (c *Collection) Ref(count uint32) uint32 {
func (c *Collection) Unref(count uint32) uint32 {
refCount := c.refCount.Sub(count)
log.Info("collection ref decrement",
log.Debug("collection ref decrement",
zap.Int64("nodeID", paramtable.GetNodeID()),
zap.Int64("collectionID", c.ID()),
zap.Uint32("refCount", refCount),