From 1671d57221408e0ac6ea6dd4ee8ab2f9b162248a Mon Sep 17 00:00:00 2001 From: lixiao <932184220@qq.com> Date: Wed, 15 Oct 2025 16:57:09 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=87=E7=A8=8B=E6=95=B0=E6=8D=AE=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=86=99=E5=85=A5=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/src/main/ets/workers/Log.ets | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/entry/src/main/ets/workers/Log.ets b/entry/src/main/ets/workers/Log.ets index b2284d3..a8a3fb1 100644 --- a/entry/src/main/ets/workers/Log.ets +++ b/entry/src/main/ets/workers/Log.ets @@ -91,12 +91,11 @@ async function InitExam(dirName: string) { // 写过程数据 async function WriteProcessData(type: ProcessDataEnumType, data: string) { - let result: LogWorkerMessage = JSON.parse(data) - if (type === ProcessDataEnumType.WuxiExam) { - writeQueue.push({ type, data: result.data }); - } else { - writeQueue.push({ type, data }); - } + // if (type === ProcessDataEnumType.WuxiExam) { + // writeQueue.push({ type, data }); + // } else { + writeQueue.push({ type, data }); + // } if (!isProcessing) { processQueue(); }