mirror of https://github.com/milvus-io/milvus.git
fix: change log info to debug for collection ref (#41267)
issue: #41268 Signed-off-by: SpadeA <tangchenjie1210@gmail.com>pull/41272/head
parent
1f2077b68f
commit
736512a59e
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue