From d4e826984403a14c9de05ba467a5e081ee9cf518 Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Sun, 29 Sep 2024 21:18:54 +0200 Subject: [PATCH] chore(hosts): Remove println --- handlers/hosts/lsp/text-document-did-open.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/handlers/hosts/lsp/text-document-did-open.go b/handlers/hosts/lsp/text-document-did-open.go index e9f1306..6022344 100644 --- a/handlers/hosts/lsp/text-document-did-open.go +++ b/handlers/hosts/lsp/text-document-did-open.go @@ -7,7 +7,6 @@ import ( "config-lsp/handlers/hosts/ast" "config-lsp/handlers/hosts/indexes" "config-lsp/utils" - "fmt" "github.com/tliron/glsp" protocol "github.com/tliron/glsp/protocol_3_16" @@ -30,7 +29,6 @@ func TextDocumentDidOpen( errors := parser.Parse(params.TextDocument.Text) diagnostics := make([]protocol.Diagnostic, 0) - println(fmt.Sprintf("Errors: %v", errors)) if len(errors) > 0 { diagnostics = utils.Map( errors,