From e7cabb5f4c0e40af5f4248d81d8178e576205bdb Mon Sep 17 00:00:00 2001 From: Carte <7457451+seejaysea-dev@users.noreply.github.com> Date: Sat, 21 Jun 2025 01:02:02 +0000 Subject: [PATCH] fix(powershell_es): set LogLevel to "Information" #3914 breaks LSP This reverts commit 314b35335cc84bc2a085c84c69da955ba22da163. --- lsp/powershell_es.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lsp/powershell_es.lua b/lsp/powershell_es.lua index 8f68377146..d734df29d9 100644 --- a/lsp/powershell_es.lua +++ b/lsp/powershell_es.lua @@ -44,7 +44,7 @@ return { local shell = vim.lsp.config.powershell_es.shell or 'pwsh' local command_fmt = - [[& '%s/PowerShellEditorServices/Start-EditorServices.ps1' -BundledModulesPath '%s' -LogPath '%s/powershell_es.log' -SessionDetailsPath '%s/powershell_es.session.json' -FeatureFlags @() -AdditionalModules @() -HostName nvim -HostProfileId 0 -HostVersion 1.0.0 -Stdio -LogLevel Information]] + [[& '%s/PowerShellEditorServices/Start-EditorServices.ps1' -BundledModulesPath '%s' -LogPath '%s/powershell_es.log' -SessionDetailsPath '%s/powershell_es.session.json' -FeatureFlags @() -AdditionalModules @() -HostName nvim -HostProfileId 0 -HostVersion 1.0.0 -Stdio -LogLevel Normal]] local command = command_fmt:format(bundle_path, bundle_path, temp_path, temp_path) local cmd = { shell, '-NoLogo', '-NoProfile', '-Command', command }