Fixing verbosity

This commit is contained in:
Pavel Pivovarov
2025-12-15 15:49:49 +11:00
parent 25e263b7a6
commit 1d659006ed
2 changed files with 4 additions and 3 deletions

View File

@@ -49,7 +49,6 @@ func (m *Manager) ConnectServers(servers map[string]config.MCPServer) error {
for name, serverCfg := range servers {
if err := m.connectServer(name, serverCfg); err != nil {
log.Printf("Warning: Failed to connect to MCP server %s: %v", name, err)
// Store the error in the connection
m.servers[name] = &ServerConnection{
Name: name,
@@ -58,7 +57,6 @@ func (m *Manager) ConnectServers(servers map[string]config.MCPServer) error {
}
continue
}
log.Printf("Successfully connected to MCP server: %s", name)
}
return nil