fix(node): remove debug console.log on node host startup

Fixes #46411

Fixes #46411
This commit is contained in:
Andrew Demczuk
2026-03-14 21:17:48 +01:00
committed by GitHub
parent b49e1386d0
commit 747609d7d5
2 changed files with 1 additions and 2 deletions

View File

@@ -174,8 +174,6 @@ export async function runNodeHost(opts: NodeHostRunOptions): Promise<void> {
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,