From ec2ef4313fa3c371c9dc700162f1120ae1035959 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Mar 2026 09:17:43 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20address=20code=20review=20feedback=20?= =?UTF-8?q?=E2=80=94=20spacing=20and=20log=20prefix=20consistency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com> --- openclaw/index.js | 2 +- openclaw/verify-loop.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openclaw/index.js b/openclaw/index.js index a9d60783..cdecb7f1 100644 --- a/openclaw/index.js +++ b/openclaw/index.js @@ -272,7 +272,7 @@ function phaseSleep(soul, loopResult) { records.push(sleepRecord); fs.writeFileSync(recordPath, JSON.stringify(records, null, 2)); - console.log(`[OPENCLAW] 💤 ${soul.name}核心大脑进入休眠`); + console.log(`[OPENCLAW] 💤 ${soul.name} 核心大脑进入休眠`); console.log(`[OPENCLAW] 📋 闭环记录已写入: ${recordPath}`); // 输出到 GITHUB_OUTPUT diff --git a/openclaw/verify-loop.js b/openclaw/verify-loop.js index 88dc60ae..15ebe3d4 100644 --- a/openclaw/verify-loop.js +++ b/openclaw/verify-loop.js @@ -191,7 +191,7 @@ async function verifyLoop(live) { return result; } catch (err) { - console.log(`❌ 闭环验证异常: ${err.message}`); + console.log(`[VERIFY] ❌ 闭环验证异常: ${err.message}`); return { success: false, error: err.message }; } }