diff options
| author | Bruce Wen <wenijinew@gmail.com> | 2025-06-19 00:13:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-18 15:13:16 -0700 |
| commit | 314b35335cc84bc2a085c84c69da955ba22da163 (patch) | |
| tree | 10558e045d55194123cfe7143d42e653c6807d78 /lsp/powershell_es.lua | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-314b35335cc84bc2a085c84c69da955ba22da163.tar nvim-lspconfig-314b35335cc84bc2a085c84c69da955ba22da163.tar.gz nvim-lspconfig-314b35335cc84bc2a085c84c69da955ba22da163.tar.bz2 nvim-lspconfig-314b35335cc84bc2a085c84c69da955ba22da163.tar.lz nvim-lspconfig-314b35335cc84bc2a085c84c69da955ba22da163.tar.xz nvim-lspconfig-314b35335cc84bc2a085c84c69da955ba22da163.tar.zst nvim-lspconfig-314b35335cc84bc2a085c84c69da955ba22da163.zip | |
fix(powershell_es): set LogLevel to "Information" #3914
Co-authored-by: Bruce Wen <bruce.wen@ericsson.com>
Diffstat (limited to 'lsp/powershell_es.lua')
| -rw-r--r-- | lsp/powershell_es.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/powershell_es.lua b/lsp/powershell_es.lua index d734df29..8f683771 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 Normal]] + [[& '%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]] local command = command_fmt:format(bundle_path, bundle_path, temp_path, temp_path) local cmd = { shell, '-NoLogo', '-NoProfile', '-Command', command } |
