From 747609d7d553b4a194a06d6f9b4c79482c86ed8e Mon Sep 17 00:00:00 2001 From: Andrew Demczuk Date: Sat, 14 Mar 2026 21:17:48 +0100 Subject: [PATCH] fix(node): remove debug console.log on node host startup Fixes #46411 Fixes #46411 --- CHANGELOG.md | 1 + src/node-host/runner.ts | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c3e963d3ea..6b25a147e16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ Docs: https://docs.openclaw.ai - Slack/interactive replies: preserve `channelData.slack.blocks` through live DM delivery and preview-finalized edits so Block Kit button and select directives render instead of falling back to raw text. Thanks @vincentkoc. - CI/channel test routing: move the built-in channel suites into `test:channels` and keep them out of `test:extensions`, so extension CI no longer fails after the channel migration while targeted test routing still sends Slack, Signal, and iMessage suites to the right lane. (#46066) Thanks @scoootscooob. - Agents/usage tracking: stop forcing `supportsUsageInStreaming: false` on non-native openai-completions endpoints so providers like DashScope, DeepSeek, and other OpenAI-compatible backends report token usage and cost instead of showing all zeros. (#46142) +- Node/startup: remove leftover debug `console.log("node host PATH: ...")` that printed the resolved PATH on every `openclaw node run` invocation. (#46411) ## 2026.3.13 diff --git a/src/node-host/runner.ts b/src/node-host/runner.ts index 0378d9406ba..097d8ef9ec0 100644 --- a/src/node-host/runner.ts +++ b/src/node-host/runner.ts @@ -174,8 +174,6 @@ export async function runNodeHost(opts: NodeHostRunOptions): Promise { const scheme = gateway.tls ? "wss" : "ws"; const url = `${scheme}://${host}:${port}`; const pathEnv = ensureNodePathEnv(); - // eslint-disable-next-line no-console - console.log(`node host PATH: ${pathEnv}`); const client = new GatewayClient({ url,