summaryrefslogtreecommitdiff
path: root/internal/hexailsp/run.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-12 09:33:49 +0200
committerPaul Buetow <paul@buetow.org>2026-02-12 09:33:49 +0200
commit76ea4208c520879c4a89d74483783b6cfb3af3ed (patch)
tree9d12e0ee41414ef41cd95b1992d3f9eb846d5e7d /internal/hexailsp/run.go
parent9a734c6231887a3dd4505cb201dc2ee9d8efb658 (diff)
Rename hexai-lsp command to hexai-lsp-server
Amp-Thread-ID: https://ampcode.com/threads/T-019c50bc-2906-77db-a31e-0d553338d99b Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'internal/hexailsp/run.go')
-rw-r--r--internal/hexailsp/run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/hexailsp/run.go b/internal/hexailsp/run.go
index 18f5aa5..99779bb 100644
--- a/internal/hexailsp/run.go
+++ b/internal/hexailsp/run.go
@@ -32,7 +32,7 @@ func Run(logPath string, stdin io.Reader, stdout io.Writer, stderr io.Writer) er
}
func RunWithConfig(logPath string, configPath string, stdin io.Reader, stdout io.Writer, stderr io.Writer) error {
- logger := log.New(stderr, "hexai-lsp ", log.LstdFlags|log.Lmsgprefix)
+ logger := log.New(stderr, "hexai-lsp-server ", log.LstdFlags|log.Lmsgprefix)
if strings.TrimSpace(logPath) != "" {
f, err := os.OpenFile(logPath, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0o644)
if err != nil {