summaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/lsp/discovery/integration.go22
1 files changed, 8 insertions, 14 deletions
diff --git a/internal/lsp/discovery/integration.go b/internal/lsp/discovery/integration.go
index 2694fe58e..7820b6449 100644
--- a/internal/lsp/discovery/integration.go
+++ b/internal/lsp/discovery/integration.go
@@ -49,24 +49,18 @@ func IntegrateLSPServers(workingDir string) error {
Command: serverInfo.Path,
Args: serverInfo.Args,
}
- logging.Info("Added LSP server to configuration",
- "language", langID,
- "command", serverInfo.Command,
+ logging.Info("Added LSP server to configuration",
+ "language", langID,
+ "command", serverInfo.Command,
"path", serverInfo.Path)
} else {
- logging.Warn("LSP server not available",
- "language", langID,
- "command", serverInfo.Command,
+ logging.Warn("LSP server not available",
+ "language", langID,
+ "command", serverInfo.Command,
"installCmd", serverInfo.InstallCmd)
}
}
- // Mark the project as initialized
- if shouldInit {
- if err := config.MarkProjectInitialized(); err != nil {
- logging.Warn("Failed to mark project as initialized", "error", err)
- }
- }
-
return nil
-} \ No newline at end of file
+}
+