diff options
| author | kylo252 <59826753+kylo252@users.noreply.github.com> | 2021-09-25 18:56:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-25 18:56:06 +0200 |
| commit | 93309eb9bcf2111eb072dd82269a7a439e0c8e26 (patch) | |
| tree | 9cf135027cc0c64eb9b360d42c7f7129600f4b36 /lua/nvim-lsp-installer/ui/status-win/init.lua | |
| parent | hls: update to 1.4.0 (diff) | |
| download | mason-93309eb9bcf2111eb072dd82269a7a439e0c8e26.tar mason-93309eb9bcf2111eb072dd82269a7a439e0c8e26.tar.gz mason-93309eb9bcf2111eb072dd82269a7a439e0c8e26.tar.bz2 mason-93309eb9bcf2111eb072dd82269a7a439e0c8e26.tar.lz mason-93309eb9bcf2111eb072dd82269a7a439e0c8e26.tar.xz mason-93309eb9bcf2111eb072dd82269a7a439e0c8e26.tar.zst mason-93309eb9bcf2111eb072dd82269a7a439e0c8e26.zip | |
feat: add a logger based on plenary.log (#99)
Diffstat (limited to 'lua/nvim-lsp-installer/ui/status-win/init.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/ui/status-win/init.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/nvim-lsp-installer/ui/status-win/init.lua b/lua/nvim-lsp-installer/ui/status-win/init.lua index 42a5d1a1..15e2696f 100644 --- a/lua/nvim-lsp-installer/ui/status-win/init.lua +++ b/lua/nvim-lsp-installer/ui/status-win/init.lua @@ -327,10 +327,10 @@ local function init(all_servers) return { open = open, install_server = function(server) - log.debug { "installing server", server } + -- log.debug { "installing server", server } local server_state = get_state().servers[server.name] if server_state and (server_state.installer.is_running or server_state.installer.is_queued) then - log.debug { "Installer is already queued/running", server.name } + -- log.debug { "Installer is already queued/running", server.name } return end mutate_state(function(state) @@ -343,7 +343,7 @@ local function init(all_servers) uninstall_server = function(server) local server_state = get_state().servers[server.name] if server_state and (server_state.installer.is_running or server_state.installer.is_queued) then - log.debug { "Installer is already queued/running", server.name } + -- log.debug { "Installer is already queued/running", server.name } return end |
