fix(installer): use correct log level on error
This commit is contained in:
parent
8d0a96ad92
commit
35464fdfc9
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ local urls = {
|
||||||
local function handle_intall_exit(opt, url)
|
local function handle_intall_exit(opt, url)
|
||||||
if opt.code ~= 0 then
|
if opt.code ~= 0 then
|
||||||
u.deferred_notify("go install failed: " .. url)
|
u.deferred_notify("go install failed: " .. url)
|
||||||
log.debug("go install failed:", "url", url, "stderr", opt.stderr)
|
log.error("go install failed:", "url", url, "opt", vim.inspect(opt))
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue