Remove excessive logging when keepAlive is disabled

Co-authored-by: samanhappy <2755122+samanhappy@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-11-29 14:03:34 +00:00
parent f9a12b8ed1
commit 1c42b6802b

View File

@@ -38,7 +38,6 @@ const setupKeepAlive = (serverInfo: ServerInfo, serverConfig: ServerConfig): voi
// Check if keepAlive is explicitly enabled (default is false to avoid excessive API calls) // Check if keepAlive is explicitly enabled (default is false to avoid excessive API calls)
if (serverConfig.keepAlive !== true) { if (serverConfig.keepAlive !== true) {
console.log(`Keep-alive ping disabled for server: ${serverInfo.name} (set keepAlive: true to enable)`);
return; return;
} }