diff --git a/entry/src/main/ets/workers/Log.ets b/entry/src/main/ets/workers/Log.ets index 6467447..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(); }