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 }; } }