Remove logs that print insert results (#21394)

Signed-off-by: jaime <yun.zhang@zilliz.com>
This commit is contained in:
jaime 2022-12-27 12:49:29 +08:00 committed by GitHub
parent 28b44b781f
commit a8a1b0b3e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2125,7 +2125,6 @@ func (node *Proxy) Insert(ctx context.Context, request *milvuspb.InsertRequest)
metrics.ProxyInsertVectors.WithLabelValues(strconv.FormatInt(paramtable.GetNodeID(), 10)).Add(float64(successCnt))
metrics.ProxyMutationLatency.WithLabelValues(strconv.FormatInt(paramtable.GetNodeID(), 10), metrics.InsertLabel).Observe(float64(tr.ElapseSpan().Milliseconds()))
metrics.ProxyCollectionMutationLatency.WithLabelValues(strconv.FormatInt(paramtable.GetNodeID(), 10), metrics.InsertLabel, request.CollectionName).Observe(float64(tr.ElapseSpan().Milliseconds()))
log.Debug("lxg debug", zap.Any("insertResult", it.result))
return it.result, nil
}