Skip to content

Commit 2782f81

Browse files
committed
fix(profiling): ensure proper traces in case of require errors
1 parent 5579d72 commit 2782f81

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lua/lazy/init.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@ local function profile_require()
1010
if Util and not done[modname] then
1111
done[modname] = true
1212
Util.track({ require = modname })
13-
local ret = vim.F.pack_len(r(modname))
13+
local ok, ret = pcall(function()
14+
return vim.F.pack_len(r(modname))
15+
end)
1416
Util.track()
17+
if not ok then
18+
error(ret, 2)
19+
end
1520
return vim.F.unpack_len(ret)
1621
else
1722
return r(modname)

0 commit comments

Comments
 (0)