Skip to content

Commit d345e18

Browse files
authored
[fix][backend]: remove unnecessary logs (#511)
fix: remove unnecessary logs
1 parent 5c35c34 commit d345e18

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

backend/modules/observability/domain/task/service/taskexe/processor/auto_evaluate.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,6 @@ func (p *AutoEvaluateProcessor) OnTaskRunCreated(ctx context.Context, param task
345345
if fieldMapping.FieldSchema == nil {
346346
continue
347347
}
348-
logs.CtxInfo(ctx, "Data key fall back: %v", fieldMapping)
349348
// 兼容老版 无 evalsetname
350349
var evalsetName *string
351350
if fieldMapping.EvalSetName == nil || *fieldMapping.EvalSetName == "" {

backend/modules/observability/domain/trace/entity/dataset.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,6 @@ func GetContentInfo(ctx context.Context, contentType ContentType, value string)
485485
Text: value,
486486
}
487487
}
488-
logs.CtxInfo(ctx, "Get content info success, content:%v", content)
489488
return content, 0
490489
}
491490

backend/modules/observability/domain/trace/service/trace_export_service.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,6 @@ func (r *TraceExportServiceImpl) buildItem(ctx context.Context, span *loop_span.
577577
logs.CtxInfo(ctx, "Extract field failed, err:%v", err)
578578
}
579579
}
580-
logs.CtxInfo(ctx, "Extract field value:%v", value)
581580
content, errCode := entity.GetContentInfo(ctx, mapping.FieldSchema.ContentType, value)
582581

583582
if errCode == entity.DatasetErrorType_MismatchSchema {

0 commit comments

Comments
 (0)