aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-08-09 09:14:41 +0200
committerGitHub <noreply@github.com>2023-08-09 07:14:41 +0000
commit29b9b97f80409af9f5258623ee405e07dae44c82 (patch)
treeb648d17d38a210a29237b17a9e17e269ead42432 /lua
parentdocs: update help links (#1428) (diff)
downloadmason-29b9b97f80409af9f5258623ee405e07dae44c82.tar
mason-29b9b97f80409af9f5258623ee405e07dae44c82.tar.gz
mason-29b9b97f80409af9f5258623ee405e07dae44c82.tar.bz2
mason-29b9b97f80409af9f5258623ee405e07dae44c82.tar.lz
mason-29b9b97f80409af9f5258623ee405e07dae44c82.tar.xz
mason-29b9b97f80409af9f5258623ee405e07dae44c82.tar.zst
mason-29b9b97f80409af9f5258623ee405e07dae44c82.zip
chore(logging): fix log string (#1444)
Diffstat (limited to 'lua')
-rw-r--r--lua/mason-core/installer/registry/util.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/mason-core/installer/registry/util.lua b/lua/mason-core/installer/registry/util.lua
index 04492bbf..33aa5c33 100644
--- a/lua/mason-core/installer/registry/util.lua
+++ b/lua/mason-core/installer/registry/util.lua
@@ -47,7 +47,7 @@ function M.ensure_valid_version(versions_thunk)
ctx.stdio_sink.stdout "Fetching available versions…\n"
local all_versions = versions_thunk()
if all_versions:is_failure() then
- log.warn("Failed to fetch versions for package %s", ctx.package)
+ log.warn("Failed to fetch versions for package", ctx.package)
-- Gracefully fail (i.e. optimistically continue package installation)
return Result.success()
end