enhance: Remove debug log (#30955)

Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
pull/30951/head
yihao.dai 2024-03-01 10:02:59 +08:00 committed by GitHub
parent 17a2fd048e
commit a5a4ca8459
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 2 deletions

View File

@ -62,7 +62,6 @@ func (fm *fgManagerImpl) AddFlowgraph(ds *dataSyncService) {
func (fm *fgManagerImpl) AddandStartWithEtcdTickler(dn *DataNode, vchan *datapb.VchannelInfo, schema *schemapb.CollectionSchema, tickler *etcdTickler) error {
log := log.With(zap.String("channel", vchan.GetChannelName()))
log.Warn(fmt.Sprintf("debug AddandStartWithEtcdTickler %d", dn.GetNodeID()))
if fm.flowgraphs.Contain(vchan.GetChannelName()) {
log.Warn("try to add an existed DataSyncService")
return nil

View File

@ -111,7 +111,6 @@ func (node *DataNode) FlushSegments(ctx context.Context, req *datapb.FlushSegmen
zap.Int64("serverID", serverID),
)
log.Info(fmt.Sprintf("debug by FlushSegments:%v:%v", serverID, req.GetBase().GetTargetID()))
return merr.Status(merr.WrapErrNodeNotMatch(req.GetBase().GetTargetID(), serverID)), nil
}