1
0
mirror of https://github.com/kepler155c/opus synced 2025-01-16 18:32:52 +00:00

remove trace for now

This commit is contained in:
kepler155c@gmail.com 2019-02-13 20:17:01 -05:00
parent ae6d8e8ebd
commit a36051bf78

View File

@ -109,7 +109,7 @@ local function xprun(env, path, ...)
setmetatable(env, { __index = _G })
local fn, m = loadfile(path, env)
if fn then
return trace(fn, ...)
return pcall(fn, ...)
end
return fn, m
end