From d616898802dfe7e5dd648bcf53c6d1f86b6d3642 Mon Sep 17 00:00:00 2001
From: Bin <bin.zheng@slooong.com>
Date: 星期三, 17 十二月 2025 14:33:06 +0800
Subject: [PATCH] 图片路径测试
---
label_studio/data_export/api.py | 10 ----------
1 files changed, 0 insertions(+), 10 deletions(-)
diff --git a/label_studio/data_export/api.py b/label_studio/data_export/api.py
index c6378d2..0bd4832 100644
--- a/label_studio/data_export/api.py
+++ b/label_studio/data_export/api.py
@@ -208,14 +208,6 @@
download_resources = query_serializer.validated_data['download_resources']
interpolate_key_frames = query_serializer.validated_data['interpolate_key_frames']
- # 调试日志: API 层参数
- logger.error(f'[Export API Debug] ========== Export Request Received ==========')
- logger.error(f'[Export API Debug] Project ID: {project.id}')
- logger.error(f'[Export API Debug] export_type: {export_type}')
- logger.error(f'[Export API Debug] download_resources: {download_resources}')
- logger.error(f'[Export API Debug] only_finished: {only_finished}')
- logger.error(f'[Export API Debug] Request GET params: {dict(request.GET)}')
-
tasks_ids = request.GET.getlist('ids[]')
logger.debug('Get tasks')
@@ -227,8 +219,6 @@
query = query.filter(annotations__isnull=False).distinct()
task_ids = query.values_list('id', flat=True)
-
- logger.error(f'[Export API Debug] Total tasks to export: {len(task_ids)}')
logger.debug('Serialize tasks for export')
tasks = []
--
Gitblit v1.9.3